mellomaths / interpreter

An Programming Language Interpreter developed using YACC/Bison and Flex

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

An Programming Language Interpreter developed using YACC/Bison and Flex


Languages

Language:C 38.7%Language:Yacc 32.9%Language:Lex 23.5%Language:Makefile 4.9%