From 66e7ab5b219d0961fb4032c7a57c822c2a2a29b092a2f19930427af98f559cc8 Mon Sep 17 00:00:00 2001 From: Apache Date: Thu, 13 Jun 2024 18:30:35 -0500 Subject: [PATCH] Lay out new list structure --- src/test.lisp | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/src/test.lisp b/src/test.lisp index 9d552d0..d073e67 100644 --- a/src/test.lisp +++ b/src/test.lisp @@ -1,8 +1,14 @@ ; This is a comment (print - (add - 1.0 - (mul 2 3) - ) -) \ No newline at end of file + (add 0.5 3) +) + +; LispValue::List({ +; LispValue::RustFunction("print", ), +; LispValue::List({ +; LispValue::RustFunction("add", ), +; LispValue::Float(1.0), +; LispValue::Integer(3) +; }) +; })