Custom Language Parser A simple custom programming language parser built from scratch in Go (Golang), featuring a lexer, tokenization, and parser implementation.
This project is mainly focused on learning how programming languages work internally, from source code to structured syntax.
custom-language-parser/
β
βββ archives/ # Previous versions and experiments
β
βββ src/
β βββ ast/ # Abstract Syntax Tree definitions
β βββ lexer/ # Lexical analysis and tokenization
β βββ parser/ # Parser and grammar implementation
β βββ main.go # Application entry point