raspberry-pi-pico-machine-c.../compiler/scripts/loops.lisp
2022-05-16 17:45:34 +02:00

7 lines
79 B
Common Lisp

(defvar i:uint32 0)
(loop while (< i 0xffff)
(print i)
(let i (+ i 1))
)