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

https://github.com/dacmarcell/rust-lexer

Lexer written in Rust
https://github.com/dacmarcell/rust-lexer

rust

Last synced: 3 months ago
JSON representation

Lexer written in Rust

Awesome Lists containing this project

README

        

# A lexer for Java lang

| Implemented? | Literal Example | Token Type |
|---------------|--------------------|---------------|
| Y | 'single quote' | String |
| Y | "double quote" | String |
| Y | 123 | Number |
| Y | 123.456 | Number |
| Y | = | Assign |
| N | + | Assign |
| Y | let | Identifier |
| N | const | Identifier |