Merge commit '40a723a92236fe4e58feb89057b4182b1fc76810'
[bpt/guile.git] / test-suite / vm / t-do-loop.scm
CommitLineData
0b5f0e49
LC
1(let ((n+ 0))
2 (do ((n- 5 (1- n-))
3 (n+ n+ (1+ n+)))
4 ((= n- 0))
b6368dbb 5 (format #f "n- = ~a~%" n-)))