Added flags to language specifiction. Added optional expect string to language specification. Added some exaple grammars for testing and demos

This commit is contained in:
Daniel Holden
2014-01-26 11:25:50 +00:00
parent 8931782986
commit d5e2bdf977
17 changed files with 942 additions and 269 deletions

11
examples/minimal.smallc Normal file
View File

@@ -0,0 +1,11 @@
#include "stdio.h"
main() {
int i;
int j;
j = 10;
return 0;
}