5 lines
57 B
Text
5 lines
57 B
Text
|
|
(mut i 0)
|
||
|
|
(while true {
|
||
|
|
(print i)
|
||
|
|
(set i (+ 1 i)) })
|