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