RosettaCodeData/Task/Loop-over-multiple-arrays-simultaneously/Raku/loop-over-multiple-arrays-simultaneously-1.raku

4 lines
71 B
Raku
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
for <a b c> Z <A B C> Z 1, 2, 3 -> ($x, $y, $z) {
say $x, $y, $z;
}