This project implements a Lexer, Parser and Interpreter for a simple language. An example script can be found in example.txt
To build the project, simply run:
cargo build --release
The executable can be found in target/release
The interpreter cli accepts a single argument that points to a source file, like the provided example.txt
cd target/release
Windows:
.\simple-interpreter.exe ..\..\example.txt
Linux:
./simple-interpreter ../../example.txt