From 2d7c9ae0aa841b776ad379c7ace59585a1e125aa Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Thu, 5 Jan 2017 02:36:52 -0500 Subject: [PATCH] Mention nanopass --- docs/Writing-the-Cyclone-Scheme-Compiler-Revision-1.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Writing-the-Cyclone-Scheme-Compiler-Revision-1.md b/docs/Writing-the-Cyclone-Scheme-Compiler-Revision-1.md index fc8ff271..a9c3b6b1 100644 --- a/docs/Writing-the-Cyclone-Scheme-Compiler-Revision-1.md +++ b/docs/Writing-the-Cyclone-Scheme-Compiler-Revision-1.md @@ -109,7 +109,7 @@ Most of the transformations follow a similar pattern of recursively examining an ((app? exp) (reduce union (map search exp) '())) (else (error "unknown expression: " exp)))) -TODO: mention nanopass, which seems to be a better approach but is R6RS so not really an option for this project :( +The [Nanopass Framework](https://github.com/nanopass/nanopass-framework-scheme) was created to make it easier to write this type of code. Unfortunately Nanopass is written in R6RS and could not be used for this project. ### Macro Expansion