ulisp is a programming language created in 2016 by David Johnson-Davies.
#1329on PLDB | 8Years Old |
git clone https://github.com/technoblogy/ulisp
uLisp庐 is a version of the Lisp programming language specifically designed to run on microcontrollers with a limited amount of RAM.
(defun b (x) (pinmode 13 t) (digitalwrite 13 x) (delay 500) (b (not x)))