mirror of
https://github.com/dbisu/pico-ducky.git
synced 2025-12-06 02:41:45 +00:00
* Add functions, while loops, and vars support * Add back REPEAT * Add support for nested WHILE loops in function --------- Co-authored-by: Tony Le <tonyle@coxautoinc.com>
7 lines
91 B
Plaintext
7 lines
91 B
Plaintext
VAR $TIME = 3
|
|
WHILE ($TIME > 0)
|
|
STRING .
|
|
DELAY 500
|
|
STRING While Looop!!
|
|
ENTER
|
|
END_WHILE |