This commit is contained in:
Justin Ethier 2016-08-13 01:45:28 -04:00
parent 17ce827d8e
commit d525e1eef3

View file

@ -7,4 +7,6 @@ Bug Fixes:
- Thanks to Mark Meyer, identified and fixed several segfaults in `write` and `display`.
- Updated `write` to display escaped character sequences (EG: "\t") instead of literal characters.
- Prevent C compilation errors when building a program that only contains basic primitives or a constant at the top level.
- Fixed the compiler to allow application of a function that can take any number of arguments. For example:
((lambda test (write test)) 1 2 3 4)