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