Lay out new list structure

This commit is contained in:
Apache 2024-06-13 18:30:35 -05:00
parent ef387fc051
commit 66e7ab5b21
Signed by: apache
GPG key ID: 6B10F3EAF14F4C77

View file

@ -1,8 +1,14 @@
; This is a comment
(print
(add
1.0
(mul 2 3)
)
(add 0.5 3)
)
; LispValue::List({
; LispValue::RustFunction("print", <rust fn type>),
; LispValue::List({
; LispValue::RustFunction("add", <rust fn type>),
; LispValue::Float(1.0),
; LispValue::Integer(3)
; })
; })