Open Suplanus opened 4 years ago
Grammar for variables is defined by: IDENTIFIER = <<[a-z_]\w*>>
so the first character must be a-z or underscore, and subsequent characters must match RegEx "word" characters", which unfortunately does not include a number of accented characters.
If there is an umlaut in the variable name a syntax error is thrown:
Here is the unit test for it: