Reify bytevector? in the correct module
[bpt/guile.git] / gc-benchmarks / loop.scm
1 (let loop ((i 10000000))
2 (and (> i 0)
3 (loop (1- i))))
4