Skip to content

Latest commit

 

History

History
41 lines (31 loc) · 676 Bytes

File metadata and controls

41 lines (31 loc) · 676 Bytes

Paco++

Requirements

Build Compiler

First make sure to clean every unwanted file:

  make clean

Then build the compiler:

  make

This must generate an executable "pacopp.out".

Compile your code

  ./compile.sh sample.ppp
  ./a.out

Examples

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!