From 5ec1dd7eef204d237efd00cf45631dd9f529dafc Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 15 Feb 2019 18:03:30 -0500 Subject: [PATCH] New release --- .../2019-02-16-Released-Cyclone-Scheme-0.9.8.md | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 _posts/2019-02-16-Released-Cyclone-Scheme-0.9.8.md diff --git a/_posts/2019-02-16-Released-Cyclone-Scheme-0.9.8.md b/_posts/2019-02-16-Released-Cyclone-Scheme-0.9.8.md new file mode 100644 index 00000000..0b73c16c --- /dev/null +++ b/_posts/2019-02-16-Released-Cyclone-Scheme-0.9.8.md @@ -0,0 +1,17 @@ +--- +layout: post +title: Released Cyclone Scheme 0.9.8 +excerpt: This release adds a compiler optimization to perform limited memoization of pure functions. +--- + +Features + +- Added a compiler optimization to memoize recursive calls to pure functions, where possible. + +Bug Fixes + +- Arthur Maciel fixed a bug in the compiler back-end where a terminating semi-colon would not be emitted in the C code generated for a short program. + +Internal Compiler Enhancements + +- Arthur Maciel updated the `cgen` module to follow the [Riastradh style rules](https://mumble.net/~campbell/scheme/style.txt) for updating comments. Thanks Arthur!