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