Commit 8fe31b6a authored by liam's avatar liam
Browse files

add support for !=

No related merge requests found
Showing with 203 additions and 197 deletions
+203 -197
......@@ -99,6 +99,7 @@ single_op ";"|"("|")"|","|"*"|"="|">"|"<"|"."
">=" { return GEQ; }
"<=" { return LEQ; }
"<>" { return NEQ; }
"!=" { return NEQ; }
{single_op} { return yytext[0]; }
/* id */
{identifier} {
......
This diff is collapsed.
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment