6 lines
67 B
OpenEdge ABL
6 lines
67 B
OpenEdge ABL
software {
|
|
var a = [1, 2, 3]
|
|
var b = [4, 5, 6]
|
|
|
|
print(a + b)
|
|
}
|