Please enable JavaScript in your browser!
Home
Esplora
Aiuto
Accedi
sapientech
/
guile-for-guile-emacs
Segui
1
Vota
0
Forka
0
File
Problemi
0
Pull Requests
0
Wiki
Albero (Tree):
a9733af620
Rami (Branch)
Tag
merge-bipt-elisp-wip
guile-for-gu...
/
test-suite
/
vm
/
t-do-loop.scm
t-do-loop.scm
111 B
Cronologia
Originale
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-)))