mirror of
https://gitlab.com/jusax23/raspberry-pi-pico-machine-code-emulator.git
synced 2024-11-22 06:36:45 +01:00
7 lines
79 B
Common Lisp
7 lines
79 B
Common Lisp
|
|
(defvar i:uint32 0)
|
|
|
|
(loop while (< i 0xffff)
|
|
(print i)
|
|
(let i (+ i 1))
|
|
)
|