Please enable JavaScript in your browser!
Inicio
Explorar
Axuda
Iniciar sesión
sapientech
/
guile-for-guile-emacs
Seguir
1
Destacar
0
Fork
0
Ficheiros
Incidencias
0
Pull Requests
0
Wiki
Árbore:
a9733af620
Ramas
Etiquetas
merge-bipt-elisp-wip
guile-for-gu...
/
test-suite
/
vm
/
t-do-loop.scm
t-do-loop.scm
111 B
Histórico
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-)))