Skip to content
/ darinha Public

Darinha is a simple interpreter written in Dart for the Rinha programming language, created as part of the Rinha de Compiler competition.

Notifications You must be signed in to change notification settings

irbp/darinha

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

17 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Darinha 🚀

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.

Table of Contents

Introduction 📖

What is Rinha? ❓

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.

About this Interpreter ℹ️

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.

Usage 🛠️

Generating AST 🌲

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.

  1. Clone the Rinha de Compiler repository:
git clone https://github.com/aripiprazole/rinha-de-compiler.git
  1. Follow the instructions in the Rinha de Compiler repository to generate the AST for your Rinha code.

Running with Docker 🐳

You can easily run the Darinha inside a Docker container without the need to install the Dart SDK. To do this, follow these steps:

  1. Install Docker on your machine. If you haven't already installed Docker, you can find installation instructions here.

  2. Clone this repository to your local machine:

git clone https://github.com/irbp/darinha.git
  1. Navigate to the project directory:
cd darinha
  1. 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."

  1. 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.

Running without Docker 💻

If you prefer to run the RDarinha without Docker, you can do so by installing the Dart SDK. Follow these steps:

  1. 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.

  2. Clone this repository to your local machine:

git clone https://github.com/irbp/darinha.git
  1. Navigate to the project directory:
cd darinha
  1. Install the necessary dependencies:
dart pub get
  1. 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.

About

Darinha is a simple interpreter written in Dart for the Rinha programming language, created as part of the Rinha de Compiler competition.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published