fully allow upper-case letters in variable names

This commit is contained in:
Lewis Van Winkle
2021-03-03 16:20:38 -06:00
parent 8d7ebbba53
commit 61af1dd24c
3 changed files with 8 additions and 8 deletions

View File

@@ -174,8 +174,9 @@ void test_syntax() {
{"1*2(+4", 4},
{"1*2(1+4", 4},
{"a+5", 1},
{"A+5", 1},
{"Aa+5", 1},
{"!+5", 1},
{"_a+5", 1},
{"#a+5", 1},
{"1^^5", 3},
{"1**5", 3},
{"sin(cos5", 8},