├── .gitignore ├── LICENSE ├── README.md ├── compiler ├── Lucy.g4 ├── antlr.sh └── lucyc.py └── examples └── test.ly /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/README.md -------------------------------------------------------------------------------- /compiler/Lucy.g4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/compiler/Lucy.g4 -------------------------------------------------------------------------------- /compiler/antlr.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | antlr4 -visitor -no-listener -Dlanguage=Python3 Lucy.g4 4 | -------------------------------------------------------------------------------- /compiler/lucyc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/compiler/lucyc.py -------------------------------------------------------------------------------- /examples/test.ly: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/AndreaOrru/Lucy/HEAD/examples/test.ly --------------------------------------------------------------------------------