Welcome to the Darinha repository! This project was created as part of the Rinha de Compiler competition 🏆, a learning experience aimed at building a simple interpreter for the Rinha language using the tree-walking technique.
- Introduction 📖
- Usage 🛠️
Rinha is a unique programming language designed specifically for the Rinha de Compiler competition. It challenges participants to implement a compiler or interpreter for this language, putting their programming skills to the test.
This repository contains a simple interpreter for the Rinha language written in Dart. It was developed as a personal learning project and to participate in the Rinha de Compiler competition. The interpreter uses the tree-walking technique to parse and execute Rinha code.
To generate an Abstract Syntax Tree (AST) representation of your Rinha code, you'll need to use the provided program from the Rinha de Compiler repository.
- Clone the Rinha de Compiler repository:
git clone https://github.com/aripiprazole/rinha-de-compiler.git
- Follow the instructions in the Rinha de Compiler repository to generate the AST for your Rinha code.
You can easily run the Darinha inside a Docker container without the need to install the Dart SDK. To do this, follow these steps:
-
Install Docker on your machine. If you haven't already installed Docker, you can find installation instructions here.
-
Clone this repository to your local machine:
git clone https://github.com/irbp/darinha.git
- Navigate to the project directory:
cd darinha
- Build the Docker image using the following command:
docker build -t darinha:1.0.0 .
This will create a Docker image with the name "darinha" and version "1.0.0."
- Run the interpreter inside a Docker container with the same machine specifications provided by the Rinha repository using the following command:
./darinha.sh ./path/to/your-ast-file.json
Replace path/to/your-ast-file.json
with the path to your AST JSON file.
If you prefer to run the RDarinha without Docker, you can do so by installing the Dart SDK. Follow these steps:
-
Install the Dart SDK: If you prefer to run the interpreter without Docker, you'll need to install the Dart SDK. You can find detailed installation instructions in the Dart documentation.
-
Clone this repository to your local machine:
git clone https://github.com/irbp/darinha.git
- Navigate to the project directory:
cd darinha
- Install the necessary dependencies:
dart pub get
- You can now run the interpreter with the following command:
dart bin/main.dart path/to/your-ast-file.json
Replace path/to/your-ast-file.json
with the path to your AST JSON file.