mirror of
https://github.com/justinethier/cyclone.git
synced 2025-07-15 08:47:35 +02:00
New release
This commit is contained in:
parent
b8c9730f3f
commit
32e02c21d5
1 changed files with 18 additions and 0 deletions
18
_posts/2021-09-24-Released-Cyclone-Scheme-0.33.0.md
Normal file
18
_posts/2021-09-24-Released-Cyclone-Scheme-0.33.0.md
Normal file
|
@ -0,0 +1,18 @@
|
||||||
|
---
|
||||||
|
layout: post
|
||||||
|
title: Released Cyclone Scheme 0.33.0
|
||||||
|
excerpt: Allow easier macro debugging from the REPL using expand.
|
||||||
|
---
|
||||||
|
|
||||||
|
Features
|
||||||
|
|
||||||
|
- Allow easier macro debugging from the REPL by using `expand`. Passing a single expression as an argument will return the expanded expression:
|
||||||
|
|
||||||
|
cyclone> (expand '(when #t (+ 1 2 3)))
|
||||||
|
(if #t ((lambda () (+ 1 2 3))) )
|
||||||
|
|
||||||
|
- During compilation the compiler will now call itself as a subprocess to perform Scheme-to-C compilation. This allows Cyclone to free all of those resources before calling the C compiler to generate a binary, resulting in more efficient compilation.
|
||||||
|
|
||||||
|
Bug Fixes
|
||||||
|
|
||||||
|
- Do not inline calls to `system` as it could result in multiple calls of the same command.
|
Loading…
Add table
Reference in a new issue