11 lines
238 B
Text
11 lines
238 B
Text
import extensions;
|
|
|
|
public Program()
|
|
{
|
|
auto a := new int[]{1,2,3};
|
|
auto b := new int[]{4,5};
|
|
|
|
Console.printLine(
|
|
"(",a.asEnumerable(),") + (",b.asEnumerable(),
|
|
") = (",(a + b).asEnumerable(),")").readChar();
|
|
}
|