From 4fb6c7b1ad6a4371f18c0bcbfd3f5b7226bae1b6 Mon Sep 17 00:00:00 2001 From: Justin Ethier Date: Tue, 6 Oct 2020 09:52:27 -0400 Subject: [PATCH] Issue #416 - Fix code links --- index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.md b/index.md index abb99645..70627b2f 100644 --- a/index.md +++ b/index.md @@ -124,7 +124,7 @@ Cyclone provides several example programs, including: - [Game of Life PNG Image Generator](https://github.com/justinethier/cyclone/blob/master/examples/game-of-life-png) - A modified version of game of life that uses libpng to create an image of each iteration instead of writing it to console. This example also demonstrates basic usage of the C Foreign Function Interface (FFI). -- Finally, the largest program is the compiler itself. Most of the code is contained in a series of libraries which are used by [`cyclone.scm`](cyclone.scm) and [`icyc.scm`](icyc.scm) to create executables for Cyclone's compiler and interpreter. +- Finally, the largest program is the compiler itself. Most of the code is contained in a series of libraries which are used by [`cyclone.scm`](https://github.com/justinethier/cyclone/blob/master/cyclone.scm) and [`icyc.scm`](https://github.com/justinethier/cyclone/blob/master/icyc.scm) to create executables for Cyclone's compiler and interpreter. # Compiler Internals