https://github.com/bramp/goadvent-antlr
Examples from my goadvent blog post
https://github.com/bramp/goadvent-antlr
Last synced: 4 months ago
JSON representation
Examples from my goadvent blog post
- Host: GitHub
- URL: https://github.com/bramp/goadvent-antlr
- Owner: bramp
- License: apache-2.0
- Created: 2017-12-03T20:09:20.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2021-03-13T01:16:58.000Z (over 5 years ago)
- Last Synced: 2025-10-24T10:49:03.590Z (9 months ago)
- Language: Go
- Size: 15.6 KB
- Stars: 19
- Watchers: 1
- Forks: 8
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# goadvent-antlr
Examples from my goadvent blog post
```shell
wget http://www.antlr.org/download/antlr-4.7-complete.jar
alias antlr='java -jar antlr-4.7-complete.jar'
antlr -Dlanguage=Go -o parser Calc.g4
```