https://github.com/ethanhann/lsystem-compiler
Compiles Lsystem source code into Java.
https://github.com/ethanhann/lsystem-compiler
Last synced: 3 months ago
JSON representation
Compiles Lsystem source code into Java.
- Host: GitHub
- URL: https://github.com/ethanhann/lsystem-compiler
- Owner: ethanhann
- Created: 2011-12-21T04:08:18.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T23:44:02.000Z (almost 2 years ago)
- Last Synced: 2025-01-19T22:47:33.976Z (4 months ago)
- Language: OCaml
- Homepage: http://ethanhann.github.io/Lsystem-Compiler/
- Size: 437 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Lsystem-Compiler
## Compile
1. Run Makefile ("make")
2. ./lsystem -c (lsystem file name w/ extension)
3. java (filename)For example, to build the dragon fractal:
```sh
./lsystem -c Demo/dragon.ls && java dragon
```## Tests
To run the test shell script, use "bash test.sh". Using "sh test.sh" will not work as the script uses some bash-exclusive commands.