Files
2023-10-13 14:01:41 +00:00

15 lines
124 B
Plaintext

grammar t043synpred;
options {
language = Python3;
}
a: ((s+ P)=> s+ b)? E;
b: P 'foo';
s: S;
S: ' ';
P: '+';
E: '>';