I am trying to learn how IntelliJ Grammar Kit works for creating a BNF
How can I define an identifier that stars with 'v' and then have any case. e.g. 'vModule'.
Here is my attempt:
identifier ::= "v"id
But then, instead of 'vModule', it expects 'v Module'.