Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ethanhann/lsystem-compiler
Compiles Lsystem source code into Java.
https://github.com/ethanhann/lsystem-compiler
Last synced: about 1 month 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 (about 13 years ago)
- Default Branch: master
- Last Pushed: 2023-07-23T23:44:02.000Z (over 1 year ago)
- Last Synced: 2024-10-12T13:10:54.776Z (2 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.