6 lines
146 B
Text
6 lines
146 B
Text
x =: 0
|
|
?* \ loop forever
|
|
x =+ 1 \ increment x
|
|
print x
|
|
? x %% 6 = 0 \ until
|
|
?> \ break
|