6 lines
72 B
Nim
6 lines
72 B
Nim
|
|
var val = 0
|
||
|
|
while true:
|
||
|
|
inc val
|
||
|
|
echo val
|
||
|
|
if val mod 6 == 0: break
|