diff options
author | Daniel Cerqueira <dan.git@lispclub.com> | 2025-05-28 12:37:55 +0100 |
---|---|---|
committer | Daniel Cerqueira <dan.git@lispclub.com> | 2025-05-28 12:37:55 +0100 |
commit | 1c217ee6ac5aacd2f37b1d0e69a71ac94afd5acd (patch) | |
tree | a808042b0a0c4ea180c128cc49e2198bb29850a4 /test/other/lexical.lali |
Init lali programming language.
Diffstat (limited to 'test/other/lexical.lali')
-rw-r--r-- | test/other/lexical.lali | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/test/other/lexical.lali b/test/other/lexical.lali new file mode 100644 index 0000000..d8d94e2 --- /dev/null +++ b/test/other/lexical.lali @@ -0,0 +1,15 @@ +(set 'a '1) + +(defun j () + (princ a) + (set 'a (+ a 1))) + +(j) +(j) +(princ a) + +(defun i () + (set 'b 9)) + +(i) +(princ b) |