From 25dc7b63573c621ca88a0db1d1baf5c26a48f2b6 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 17 Aug 2021 03:55:48 -0400 Subject: [PATCH] Revise write-up of changes to expand. --- CHANGELOG.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ea1ca9f1..04a52fcb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,7 +4,10 @@ Features -- Make `expand` easier to use for casual macro debugging. Only a single expression is now required as an argument. Updated associated documentation. +- 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))) ) ## 0.32.0 - August 16, 2021