From e51ab74d2809cd17ff937465149fe845f0e4ecaa Mon Sep 17 00:00:00 2001 From: hellerve Date: Thu, 7 Sep 2017 17:44:01 +0200 Subject: [PATCH] readme: updated --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 34da175..7b2126f 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,8 @@ A simple Scheme to C compiler, in C. 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 haven’t yet worked on nested functions, this is +pretty boring. -It leaks memory like crazy and if you give it wrong input, it will probably -die. Please don’t use it yet. - -Eventually, this should turn into an implementation of Matt Might’s -blog post on [flattening closures](http://matt.might.net/articles/compiling-scheme-to-c/). +If you give it wrong input, it will probably die. Please don’t use it yet.