Files
kraken/tests/grammer2.kgm

11 lines
155 B
Plaintext
Raw Normal View History

2015-07-15 13:56:57 -04:00
# comment
a = b ;
b = "c":named_c ;
b = c "d":dname ;
c = "a" | d ;
d = e post_null post_non_null ;
e = f | ;
f = ;
post_null = "hi"
post_non_null = "bye"