Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```