Iterating Over Many Arrays At Once
More generally, can iterate over two or more arrays at a time.
Use the zip function to interleave the elements of two or move lists.
for zip(@ids; @logins; @groupids) -> $id, $login, $groupid {
say "$login:x:$id:$groupid:...";
}
Type :next
to continue