LucasMagnum / simple-interpreter

Simple interpreter for Pascal language.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Simple Interpreter

CircleCI codecov

Simple interpreter for Pascal language built using Python. This interpreter was built following the Let's Build a Simple Interpreter tutorial. This is an experiment project, the aim is have fun and learn more about compilers & interpreters.

How to use it

This interpreter can either process a file or run in the REPL mode.

Basically, we have to follow the steps bellow:

  1. Clone this repository
  2. Install all dependencies (see setup)
  3. Process a Pascal file (see process a file)
  4. REPL version (see REPL version)

Table of Contents


Development

1. Setup

To properly run this interpreter, we should install the dependencies:

make setup

2. Running tests

We have two kinds of tests implemented: unit tests and behaviour tests. We can run the tests with the following commands:

make tests   # Run both unit and behaviour tests
make unit-tests
make behaviour-tests

3. Processing a Pascal file

We can run the application and see the web version of this interpreter. Just have to run the command bellow:

make run <filename>.pas

4. REPL

This interpreter also has a REPL mode that can be enable with the following command:

make run-repl

Running inside docker

To run this interpreter inside docker, we have to follow the commands bellow:

  1. Install docker

  2. Build simple interpreter image

    docker build -t simple-interpreter
  3. Run commands using docker

    docker run -i -v `pwd`:/simple-interpreter make tests

Useful links

1 - Let's build a simple interpreter

About

Simple interpreter for Pascal language.

License:MIT License


Languages

Language:Python 96.7%Language:Makefile 2.5%Language:Gherkin 0.8%