RosettaCodeData/Task/Loop-over-multiple-arrays-simultaneously/Quackery/loop-over-multiple-arrays-simultaneously.quackery

9 lines
178 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
[ rot witheach
[ emit
over i^ peek emit
dup i^ peek emit
cr ]
2drop ] is task ( $ $ $ --> )
$ "abc" $ "ABC" $ "123" task