RosettaCodeData/Task/Loop-over-multiple-arrays-simultaneously/Quackery/loop-over-multiple-arrays-simultaneously.quackery
2023-07-01 13:44:08 -04:00

8 lines
178 B
Text

[ rot witheach
[ emit
over i^ peek emit
dup i^ peek emit
cr ]
2drop ] is task ( $ $ $ --> )
$ "abc" $ "ABC" $ "123" task