my @list1= 1..5; my @list2= ; for each(@list1, @list2) -> $x, $y { say "$x with $y"; } #### for zip(@a;@b;@c) -> $nth_a, $nth_b, $nth_c { ... } #### 1 a with 2 b 3 c with 4 d 5 e with