9 lines
112 B
Plaintext
9 lines
112 B
Plaintext
grammar t032subrulePredict;
|
|
options {
|
|
language = Python;
|
|
}
|
|
|
|
a: 'BEGIN' b WS+ 'END';
|
|
b: ( WS+ 'A' )+;
|
|
WS: ' ';
|