Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/bihan001/sapphirelang
https://github.com/bihan001/sapphirelang
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/bihan001/sapphirelang
- Owner: Bihan001
- Created: 2024-01-01T19:00:08.000Z (12 months ago)
- Default Branch: main
- Last Pushed: 2024-05-14T05:50:45.000Z (8 months ago)
- Last Synced: 2024-05-14T07:53:42.077Z (8 months ago)
- Language: Go
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Backus-Naur Form (BNF) grammar
```
::= |::= | | SEMICOLON
::= INT LPAREN RPAREN LBRACE RBRACE
::= INT | INT COMMA | ε
::= INT SEMICOLON | INT EQUAL SEMICOLON
::= | PLUS | MINUS
::= | STAR | SLASH
::= | | LPAREN RPAREN | |
::= MINUS | NOT
::= QUESTION COLON
::= ID
::= NUM
```