Break
loop {
say my $n = (0..19).pick;
last if $n == 10;
say (0..19).pick;
}Last updated
Was this helpful?
loop {
say my $n = (0..19).pick;
last if $n == 10;
say (0..19).pick;
}Last updated
Was this helpful?
Was this helpful?