RosettaCodeData/Task/Array-concatenation/Elena/array-concatenation.elena

12 lines
240 B
Text
Raw Permalink Normal View History

2019-09-12 10:33:56 -07:00
import extensions;
2013-04-10 16:57:12 -07:00
2019-09-12 10:33:56 -07:00
public program()
{
2020-02-17 23:21:07 -08:00
var a := new int[]::(1,2,3);
var b := new int[]::(4,5);
2013-04-10 16:57:12 -07:00
2019-09-12 10:33:56 -07:00
console.printLine(
"(",a.asEnumerable(),") + (",b.asEnumerable(),
") = (",(a + b).asEnumerable(),")").readChar();
}