Add library compilation example

This commit is contained in:
Justin Ethier 2020-01-02 17:06:50 -05:00
parent 50f4027c8c
commit 74fbc4585f

View file

@ -95,7 +95,13 @@ and should be located in the file
scheme/cyclone/util.sld
Cyclone will not automatically generate libraries when compiling a program. Each library will need to be built separately prior to building the program.
Cyclone will not automatically generate libraries when compiling a program. Each library will need to be built separately prior to building the program. For example:
$ cd cyclone/examples/game-of-life
$ cyclone example/grid.sld
$ cyclone example/life.sld
$ cyclone life.scm
$ ./life
## Command Line Options