Let working, unit tested.

This commit is contained in:
Simon Brooke 2021-09-08 15:01:48 +01:00
parent 3abebe937c
commit 78d2395d60
No known key found for this signature in database
GPG key ID: A7A4F18D1D4DF987
4 changed files with 78 additions and 5 deletions

View file

@ -270,6 +270,7 @@ int main( int argc, char *argv[] ) {
bind_special( L"cond", &lisp_cond );
bind_special( L"lambda", &lisp_lambda );
bind_special( L"\u03bb", &lisp_lambda ); // λ
bind_special(L"let", &lisp_let);
bind_special( L"nlambda", &lisp_nlambda );
bind_special( L"n\u03bb", &lisp_nlambda );
bind_special( L"progn", &lisp_progn );