First make sure to clean every unwanted file:
make clean
Then build the compiler:
make
This must generate an executable "pacopp.out".
./compile.sh sample.ppp
./a.out
isPrime.ppp, collatz.ppp, numOculto.ppp, operations.ppp and fibo.ppp are examples of algorithms coded in Paco++. You can run them by running:
./compile.sh <nameOfProgram>.ppp
./a.out
or by compiling them all together:
./compileExamples.sh
Enjoy!