Lay out new list structure
This commit is contained in:
parent
ef387fc051
commit
66e7ab5b21
1 changed files with 11 additions and 5 deletions
|
@ -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)
|
||||
; })
|
||||
; })
|
||||
|
|
Reference in a new issue