qse/ase/cmd/lsp/t3.lsp
2008-03-21 03:49:53 +00:00

9 lines
95 B
Common Lisp

; test while
(setq x 10)
(setq y 10)
(while (< x 100) (setq y (+ x y)) (setq x (+ x 1)))
x
y