mirror of
https://github.com/Ed94/Odin.git
synced 2026-07-14 23:21:25 -07:00
#rune "" to ''; Remove infix and postfix call notation
This commit is contained in:
+1
-1
@@ -42,10 +42,10 @@ bool rune_is_whitespace(Rune r) {
|
||||
|
||||
|
||||
bool is_string_an_identifier(String s) {
|
||||
isize offset = 0;
|
||||
if (s.len < 1) {
|
||||
return false;
|
||||
}
|
||||
isize offset = 0;
|
||||
while (offset < s.len) {
|
||||
bool ok = false;
|
||||
Rune r = -1;
|
||||
|
||||
Reference in New Issue
Block a user