RosettaCodeData/Task/Loop-over-multiple-arrays-simultaneously/Amazing-Hopper/loop-over-multiple-arrays-simultaneously-1.hopper
2023-07-01 13:44:08 -04:00

12 lines
261 B
Text

#include <jambo.h>
Main
Void 'x,y,z'
Set '"a","b","c"' Append to list 'x'
Set '"A","B","C"' Append to list 'y'
Set '1,2,3' Append to list 'z'
i=1
Loop
[i++], Printnl ( Get 'x', Get 'y', Get 'z' )
Back if less-equal (i, 3)
End