Baremetal Lisp interpreter and compiler for low-resource devices
Rev. | c57088232b60ef6f3c8c88a9d246d2987e01cd35 |
---|---|
크기 | 176 bytes |
Time | 2020-09-21 09:51:46 |
Author | AlaskanEmily |
Log Message | Add some very basic typechecking for SL_I_Execute
|
; Any copyright is dedicated to the Public Domain.
; https://creativecommons.org/publicdomain/zero/1.0/
(defun println (a)
(print a)
(print "\n"))
(println "Hello world")