Allow leading underscore in variable names
Currently the syntax let _a_b = "hello"
fails with
ion: assignment error: invalid variable name
Variable names may only be (unicode) alphanumeric or `_`
The first character must be alphabetic
This issue proposes extending valid syntax for variable declarations to include leading underscore.