Files
kraken/tests/grammer2.kgm

12 lines
207 B
Plaintext

# comment
a = b ;
b = "c":named_c ;
b = c "d":dname ;
c = "a" | d ;
d = e post_null post_non_null inherit_null ;
inherit_null = e | post_non_null ;
e = f | ;
f = ;
post_null = "hi" ;
post_non_null = "bye" ;