Deprecate a..b based ranges in favour of ..=

This commit is contained in:
gingerBill
2022-06-01 11:08:19 +01:00
parent 487bd3d942
commit ba5f7c4e2a
3 changed files with 5 additions and 4 deletions
+1 -1
View File
@@ -198,7 +198,7 @@ is_valid_identifier_rune :: proc(r: rune) -> bool {
switch r {
case '_', '-', ':': return true
case 'A'..='Z', 'a'..='z': return true
case '0'..'9': return true
case '0'..='9': return true
case -1: return false
}
}