readme: updated

This commit is contained in:
2017-09-07 17:44:01 +02:00
parent 682bc9db60
commit e51ab74d28

View File

@@ -3,9 +3,8 @@
A simple Scheme to C compiler, in C. A simple Scheme to C compiler, in C.
For now it can only compile very simple programs like [this](/examples/test.lisp). For now it can only compile very simple programs like [this](/examples/test.lisp).
This means it has basic support for closures through a simplistic form of
closure conversion, but as I havent yet worked on nested functions, this is
pretty boring.
It leaks memory like crazy and if you give it wrong input, it will probably If you give it wrong input, it will probably die. Please dont use it yet.
die. Please dont use it yet.
Eventually, this should turn into an implementation of Matt Mights
blog post on [flattening closures](http://matt.might.net/articles/compiling-scheme-to-c/).