/interpreter

An Programming Language Interpreter developed using YACC/Bison and Flex

Primary LanguageC

interpreter

An Programming Language Interpreter developed using YACC/Bison and Flex.

Run the following command to create the interpreter.

make create_interpreter 

Here is a sample of the Programming Language that you can use in this interpreter:

inteiro a = 2
a = 3
inteiro b = 2
inteiro c = a + b

escreve c

inteiro d
le d

You can run this sample code with:

make run_sample