5 lines
57 B
Raku
5 lines
57 B
Raku
|
|
my $val = 0;
|
||
|
|
repeat {
|
||
|
|
say ++$val;
|
||
|
|
} until $val %% 6;
|