ayin/programs/map.ayin
2025-12-26 18:39:03 +02:00

5 lines
78 B
Text

include "./stdlib.ayin"
let main = fn() {
map(fn (x) { x + 1 }, [1,2,3])
}