RosettaCodeData/Task/Apply-a-callback-to-an-array/Logo/apply-a-callback-to-an-array.logo

7 lines
192 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
to square :x
output :x * :x
end
show map "square [1 2 3 4 5] ; [1 4 9 16 25]
show map [? * ?] [1 2 3 4 5] ; [1 4 9 16 25]
foreach [1 2 3 4 5] [print square ?] ; 1 4 9 16 25, one per line