14 lines
244 B
Plaintext
14 lines
244 B
Plaintext
# comment
|
|
Goal = a ;
|
|
a = b | rec ;
|
|
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" ;
|
|
rec = "hmm" rec | ;
|