Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
sapientech
/
guile-for-guile-emacs
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
a9733af620
Branches
Tags
merge-bipt-elisp-wip
guile-for-gu...
/
test-suite
/
vm
/
t-do-loop.scm
t-do-loop.scm
111 B
History
Raw
1
2
3
4
5
6
(let ((n+ 0))
(do ((n- 5 (1- n-))
(n+ n+ (1+ n+)))
((= n- 0))
(format #f "n- = ~a~%" n-)))