I'm trying to create ANTLR grammar that will parse the following input:
@code 123 some arbitrary text
I would like to split it onto three tokens: @code, 123 and any text after the space.. It should be something very simple, but I can't understand how to make it working..