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