mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-04-29 19:30:36 +02:00
4 lines
64 B
Scheme
4 lines
64 B
Scheme
(let loop ((i 10000000))
|
|
(and (> i 0)
|
|
(loop (1- i))))
|
|
|