1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-04-29 19:30:36 +02:00
guile/gc-benchmarks/loop.scm
2009-01-12 23:31:50 +01:00

4 lines
64 B
Scheme

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