From 0a679333b8b2a6d45a02bbbd93a227b54811885c Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 17 Aug 2021 04:22:09 -0400 Subject: [PATCH] Sync --- docs/User-Manual.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/User-Manual.md b/docs/User-Manual.md index 5484dcd8..8063b91c 100644 --- a/docs/User-Manual.md +++ b/docs/User-Manual.md @@ -195,8 +195,7 @@ This macro system provides the convenience functions `(rename identifier)` to hy ## Debugging -- A file may be compiled with the `-t` option which will write all of the intermediate transformations - including macro expansions - out to the `.c` file. -- From the interpreter one can use `expand`: +- From the interpreter one can use `expand` to perform macro expansion on the given expression: cyclone> (expand '(when #t (+ 1 2 3))) (if #t ((lambda () (+ 1 2 3))) ) @@ -211,6 +210,8 @@ This macro system provides the convenience functions `(rename identifier)` to hy ((lambda () ,@(cddr exp))))) '(when #t (write 1) (write 2)) #f #f)) +- Finally, a Scheme file may be compiled with the `-t` option to write all of the intermediate transformations - including macro expansions - out to the corresponding `.c` file. + # Multithreaded Programming ## Overview