5 lines
64 B
Text
5 lines
64 B
Text
(let loop (fun (i) {
|
|
(print i)
|
|
(loop (+ i 1)) }))
|
|
|
|
(loop 0)
|