Files
rust-mal/test.mal
teo3300 0cca2f2b9b Improved read
- no need to parse the input multiple times
- read function is more clean

Signed-off-by: teo3300 <matteo.rogora@live.it>
2023-11-14 10:29:39 +09:00

11 lines
243 B
Plaintext

(def! func ; ole
(fn* (a b c) ; this is all a bunch
; of useless comments
(def! d (+ a b)) ; to check if the parser
(- c d))) ; is able to ignore them
(test 1 2 14) (help +)
(help -)(func 1 2 3)
(help test)
; (quit)