8 lines
67 B
ChaiScript
8 lines
67 B
ChaiScript
var x = [1, 2,
|
|
3, 4]
|
|
|
|
print(x)
|
|
|
|
print(map(x,
|
|
fun(x) { x + 1 }))
|