This is a Pascal interpreter written in C++. The goal of an interpreter is to translate a source program in some high-level language into some other form.
To get started just for some simple steps:
- Download this repository.
- mkdir my_build/
- cd my_build/
- cmake ..
- make
While in my_build/ :
./interpreter pascal_file
To run this program you just need g++ compiler and CMake.
sudo apt-get install g++
sudo apt-get install cmake
Currently no steps are available.
This interpreter is based on Ruslan's Blog. Please read (https://ruslanspivak.com/lsbasi-part1/)
The current version is 1.0, which is the first release.
- George Kontogiannis - Initial work - gkonto