Add more binary operators
This commit is contained in:
parent
d8bd79e8c9
commit
542547e174
@ -44,6 +44,20 @@ bool compile_isop(char* string) {
|
|||||||
else if (strcmp(string, "-") == 0) return true;
|
else if (strcmp(string, "-") == 0) return true;
|
||||||
else if (strcmp(string, "*") == 0) return true;
|
else if (strcmp(string, "*") == 0) return true;
|
||||||
else if (strcmp(string, "/") == 0) return true;
|
else if (strcmp(string, "/") == 0) return true;
|
||||||
|
else if (strcmp(string, "**") == 0) return true;
|
||||||
|
else if (strcmp(string, "//") == 0) return true;
|
||||||
|
else if (strcmp(string, "%") == 0) return true;
|
||||||
|
else if (strcmp(string, ".") == 0) return true;
|
||||||
|
else if (strcmp(string, "~") == 0) return true;
|
||||||
|
else if (strcmp(string, "<") == 0) return true;
|
||||||
|
else if (strcmp(string, ">") == 0) return true;
|
||||||
|
else if (strcmp(string, "<=") == 0) return true;
|
||||||
|
else if (strcmp(string, ">=") == 0) return true;
|
||||||
|
else if (strcmp(string, "==") == 0) return true;
|
||||||
|
else if (strcmp(string, "!=") == 0) return true;
|
||||||
|
else if (strcmp(string, "and") == 0) return true;
|
||||||
|
else if (strcmp(string, "or") == 0) return true;
|
||||||
|
else if (strcmp(string, "|") == 0) return true;
|
||||||
|
|
||||||
else return false;
|
else return false;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user