Baremetal Lisp interpreter and compiler for low-resource devices
Rev. | c57088232b60ef6f3c8c88a9d246d2987e01cd35 |
---|---|
サイズ | 176 バイト |
日時 | 2020-09-21 09:51:46 |
作者 | AlaskanEmily |
ログメッセージ | 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")