4 lines
60 B
Scheme
4 lines
60 B
Scheme
|
|
(let loop ((i 1))
|
||
|
|
(display i) (newline)
|
||
|
|
(loop (+ 1 i)))
|