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

https://github.com/patlux/compiler


https://github.com/patlux/compiler

Last synced: 3 months ago
JSON representation

Awesome Lists containing this project

README

        

# compiler

My first own compiler

## Steps

- [x] Lexer/Tokenizer (See https://www.nan.fyi/tokenizer)

Takes the content and breaks it down into a sequence of tokens.

- [ ] Parser

Takes the sequence of tokens and analyze the structure and make sure it conform the grammatical rules of the programming language.

...