Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/shalithasuranga/simpler
Very simple language implemented using antlr for beginners
https://github.com/shalithasuranga/simpler
anltr compiler-design java lexer parsing programming-language simple-lang
Last synced: about 1 month ago
JSON representation
Very simple language implemented using antlr for beginners
- Host: GitHub
- URL: https://github.com/shalithasuranga/simpler
- Owner: shalithasuranga
- License: mit
- Created: 2018-06-26T11:59:48.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-06-27T05:08:24.000Z (over 6 years ago)
- Last Synced: 2024-11-01T08:50:28.297Z (about 2 months ago)
- Topics: anltr, compiler-design, java, lexer, parsing, programming-language, simple-lang
- Language: Java
- Homepage: https://medium.com/@shalithasuranga/build-your-own-programming-language-with-antlr-5201955537a5
- Size: 1.96 MB
- Stars: 17
- Watchers: 2
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# simplerlang
Very simple language implemented using antler for beginners based on [my article](https://medium.com/@shalithasuranga/build-your-own-programming-language-with-antlr-5201955537a5)### Sample input
```
a = 100
b = 150
show 10
show a
show b
```### Sample output
```
10
100
150
```