Issue #416 - Fix code links

This commit is contained in:
Justin Ethier 2020-10-06 09:52:27 -04:00
parent eb237848b8
commit 4fb6c7b1ad

View file

@ -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