2015-07-15 13:56:57 -04:00
|
|
|
# comment
|
2015-08-05 03:43:34 -04:00
|
|
|
Goal = a ;
|
2015-08-12 23:15:41 -04:00
|
|
|
a = b | rec "end" ;
|
2015-07-15 13:56:57 -04:00
|
|
|
b = "c":named_c ;
|
|
|
|
|
b = c "d":dname ;
|
|
|
|
|
c = "a" | d ;
|
2015-07-16 23:32:27 -04:00
|
|
|
d = e post_null post_non_null inherit_null ;
|
|
|
|
|
inherit_null = e | post_non_null ;
|
2015-08-12 23:15:41 -04:00
|
|
|
e = ;
|
2015-08-13 01:48:35 -04:00
|
|
|
e = g ;
|
|
|
|
|
#e = e | g ;
|
2015-07-15 13:56:57 -04:00
|
|
|
f = ;
|
2015-08-13 01:48:35 -04:00
|
|
|
g = f ;
|
2015-07-16 23:32:27 -04:00
|
|
|
post_null = "hi" ;
|
|
|
|
|
post_non_null = "bye" ;
|
2015-08-05 03:43:34 -04:00
|
|
|
rec = "hmm" rec | ;
|