Interpreter in Rust
A simple interpreter written in Rust programming language.
Getting Started
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes.
Prerequisites
You need to have Rust programming language installed on your machine. Follow the instructions on the official website to install it: https://www.rust-lang.org/learn/get-started
Installing
Clone this repository to your local machine:
git clone https://github.com/mosle77/Rust-interpreter.git
Change into the project directory:
cd Rust-interpreter
Build the project using cargo build
command:
cargo build
Running the tests
Run the tests using cargo test
command:
cargo test
Usage
cargo run
License
This project is licensed under the MIT License - see the LICENSE file for details.
Acknowledgments
- Inspired by Writing an Interpreter in Go by Thorsten Ball.