* meta/gdb-uninstalled-guile.in: Specify a path to libtool.
[bpt/guile.git] / testsuite / t-do-loop.scm
1 (let ((n+ 0))
2 (do ((n- 5 (1- n-))
3 (n+ n+ (1+ n+)))
4 ((= n- 0))
5 (format #f "n- = ~a~%" n-)))