From 0dfdd88147444871b164572b4d33f411819dcf44 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Fri, 31 Jul 2015 14:36:30 -0400 Subject: [PATCH] Update History.md --- docs/History.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/History.md b/docs/History.md index 15de2407..2a79f94e 100644 --- a/docs/History.md +++ b/docs/History.md @@ -6,9 +6,9 @@ Before we get started, it is important to mention my first serious open-source w ## Table of Contents -- [Source-to-Source Transformations](#Source-to-Source Transformations) +- [Source-to-Source Transformations](#source-to-source-transformations) - TODO -- [References](#References) +- [References](#references) ## Source-to-Source Transformations One of the most important inspirations for Cyclone is Marc Feeley's [The 90 minute Scheme to C compiler](http://churchturing.org/y/90-min-scc.pdf) (video and [code](https://github.com/justinethier/nugget/tree/master/90-min-scc) are also available). Over the course of 90 minutes, Feeley demonstrates how to compile Scheme to C code using source-to-source transformations, including closure and continuation-passing-style (CPS) conversions.