6 lines
70 B
Text
6 lines
70 B
Text
mut n = 0
|
|
while true {
|
|
$n += 1
|
|
print $n
|
|
if $n mod 6 == 0 {break}
|
|
}
|