[type]
Parser

[grammar]
grammar T;
a : t=('x'|'y') {<writeln("$t.text")>} ;

[start]
a

[input]
x

[output]
"""x
"""

