1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-30 20:00:19 +02:00
guile/gc-benchmarks/loop.scm
2008-10-12 23:51:03 +02:00

4 lines
64 B
Scheme

(let loop ((i 10000000))
(and (> i 0)
(loop (1- i))))