September Morn Update
This commit is contained in:
parent
4e2d22a71d
commit
aac6731f2c
6856 changed files with 141342 additions and 21127 deletions
|
|
@ -1,4 +1,14 @@
|
|||
(setq i 1024)
|
||||
(loop while (> i 0) do
|
||||
(print i)
|
||||
(setq i (floor i 2)))
|
||||
(let ((i 1024))
|
||||
(loop while (plusp i) do
|
||||
(print i)
|
||||
(setf i (floor i 2))))
|
||||
|
||||
(loop with i = 1024
|
||||
while (plusp i) do
|
||||
(print i)
|
||||
(setf i (floor i 2)))
|
||||
|
||||
(defparameter *i* 1024)
|
||||
(loop while (plusp *i*) do
|
||||
(print *i*)
|
||||
(setf *i* (floor *i* 2)))
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue