Lisp, the way God (probably didn't) intend.
|
||
---|---|---|
assets | ||
src | ||
.gitignore | ||
Cargo.lock | ||
Cargo.toml | ||
README.md |
Holy Lisp
An opinionated lisp implementation developed in the most intuitive way I could come up with.
Features
Lists with a function as the first element are evaluated when needed
(print (add 1 2)) ; => 3
(print (1 2 3)) ; => (1 2 3)
Quoted lists are not evaluated
(print '(add 1 2)) ; => '(<function add> 1 2)
Elements within quoted lists can be unquoted
(print
'(add
1 ,(sub 3 1)
)
) ; => '(<function add> 1 2)