RosettaCodeData/Task/Apply-a-callback-to-an-array/Phixmonti/apply-a-callback-to-an-array.phixmonti
2023-07-01 13:44:08 -04:00

19 lines
241 B
Text

/# Rosetta Code problem: http://rosettacode.org/wiki/Apply_a_callback_to_an_array
by Galileo, 05/2022 #/
include ..\Utilitys.pmt
def ++
1 +
enddef
def square
dup *
enddef
( 1 2 3 ) dup
getid ++ map swap
getid square map
pstack