mirror of
https://github.com/justinethier/cyclone.git
synced 2025-05-24 12:35:05 +02:00
WIP
This commit is contained in:
parent
999812f3c8
commit
2f89d5aa6a
2 changed files with 12 additions and 5 deletions
10
README.md
10
README.md
|
@ -46,13 +46,13 @@ Getting Started
|
||||||
Documentation
|
Documentation
|
||||||
-------------
|
-------------
|
||||||
|
|
||||||
- The [User Manual](docs/User-Manual.md) covers in detail how to use Cyclone, and provides information and API documentation on the Scheme language features implemented by Cyclone.
|
- The [User Manual](docs/User-Manual) covers in detail how to use Cyclone, and provides information and API documentation on the Scheme language features implemented by Cyclone.
|
||||||
|
|
||||||
- Cyclone's [Garbage Collector](docs/Garbage-Collector.md) is documented at a high-level. This document includes details on extending Cheney on the MTA to support multiple stacks and fusing that approach with a tri-color marking collector.
|
- Cyclone's [Garbage Collector](docs/Garbage-Collector) is documented at a high-level. This document includes details on extending Cheney on the MTA to support multiple stacks and fusing that approach with a tri-color marking collector.
|
||||||
|
|
||||||
- The [Benchmarks](docs/Benchmarks.md) page compares the performance of Cyclone with other R<sup>7</sup>RS Schemes using a common set of benchmarks.
|
- The [Benchmarks](docs/Benchmarks) page compares the performance of Cyclone with other R<sup>7</sup>RS Schemes using a common set of benchmarks.
|
||||||
|
|
||||||
- [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler.md) provides high-level details on how the compiler was written and how it works.
|
- [Writing the Cyclone Scheme Compiler](docs/Writing-the-Cyclone-Scheme-Compiler) provides high-level details on how the compiler was written and how it works.
|
||||||
|
|
||||||
- Finally, if you need another resource to start learning the Scheme language you may want to try a classic textbook such as [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html).
|
- Finally, if you need another resource to start learning the Scheme language you may want to try a classic textbook such as [Structure and Interpretation of Computer Programs](https://mitpress.mit.edu/sicp/full-text/book/book.html).
|
||||||
|
|
||||||
|
@ -61,7 +61,7 @@ Example Programs
|
||||||
|
|
||||||
Cyclone provides several example programs, including:
|
Cyclone provides several example programs, including:
|
||||||
|
|
||||||
- [Game of Life](examples/game-of-life) - The game of life example program and libraries from R<sup>7</sup>RS.
|
- [Game of Life]({{ page.ghproj }}examples/game-of-life) - The game of life example program and libraries from R<sup>7</sup>RS.
|
||||||
|
|
||||||
- [Threading](examples/threading) - Various examples of multi-threaded programs.
|
- [Threading](examples/threading) - Various examples of multi-threaded programs.
|
||||||
|
|
||||||
|
|
7
_config.yml
Normal file
7
_config.yml
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
defaults:
|
||||||
|
-
|
||||||
|
scope:
|
||||||
|
path: "" # an empty string here means all files in the project
|
||||||
|
type: "posts" # previously `post` in Jekyll 2.2.
|
||||||
|
values:
|
||||||
|
ghproj: "layout: "default://github.com/justinethier/cyclone/tree/master/"
|
Loading…
Add table
Reference in a new issue