A compiler, except build-it-yourself version. And by yourself, I mean me.
Currently building 👷♂️
Prerequisites:
# ensure Rust is installed; if not, install
curl --proto '=https' --tlsv1.2 -sSf \
https://sh.rustup.rs | sh
# ensure Cargo is installed
cargo --version
# if Cargo are not in PATH, add them
export PATH="$HOME/.cargo/bin:$PATH"
# reload shell configuration
source ~/.zshrc # For zsh
source ~/.bashrc # For bash
Quick setup to get the compiler running:
# run
cargo run src/main.rs
# for tests, run
cargo test
Previously:
- Lexer
- Parser
- Evaluator
- Error-reporter
- Support for
let
statements, binary operators, unary expressions
Currently: If/while statements.
Next: Scoping.
Aaron Jin
GitHub Profile