mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-23 20:15:05 +02:00
Issue #416 - Fix links for example programs
This commit is contained in:
parent
2ffafb61ad
commit
eb237848b8
1 changed files with 4 additions and 4 deletions
8
index.md
8
index.md
|
@ -116,13 +116,13 @@ The `cyclone-winds` package manager provides the ability to install packaged lib
|
|||
|
||||
Cyclone provides several example programs, including:
|
||||
|
||||
- [Tail Call Optimization](examples/tail-call-optimization.scm) - A simple example of Scheme tail call optimization; this program runs forever, calling into two mutually recursive functions.
|
||||
- [Tail Call Optimization](https://github.com/justinethier/cyclone/blob/master/examples/tail-call-optimization.scm) - A simple example of Scheme tail call optimization; this program runs forever, calling into two mutually recursive functions.
|
||||
|
||||
- [Threading](examples/threading) - Various examples of multi-threaded programs.
|
||||
- [Threading](https://github.com/justinethier/cyclone/blob/master/examples/threading) - Various examples of multi-threaded programs.
|
||||
|
||||
- [Game of Life](examples/game-of-life) - The [Conway's game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) example program and libraries from R<sup>7</sup>RS.
|
||||
- [Game of Life](https://github.com/justinethier/cyclone/blob/master/examples/game-of-life) - The [Conway's game of life](https://en.wikipedia.org/wiki/Conway%27s_Game_of_Life) example program and libraries from R<sup>7</sup>RS.
|
||||
|
||||
- [Game of Life PNG Image Generator](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).
|
||||
- [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.
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue