项目作者: dhpaulino
项目描述 :
A really simple compiler for a really simple language
高级语言: C
项目地址: git://github.com/dhpaulino/littlecompiler.git
littlecompiler
A really simple compiler for a really simple language
Symbols
- identifiers: for the names of the variables
- a string beginning with a letter, it may contein letters, digits and the caracter “_”.
- intergers:
- a string with only digits.
- let: word reserved to assignment
- print: word reserved to print
- add: word reserved to addition
- assignment:
- addition:
Exemple:
let a = 2
add b + 4
print a
print b
Output
2
4
Dependencies
Running
make
./compiler < inputfile