Browse Source

Make simple division working

DricomDragon 5 years ago
parent
commit
7108e6b30c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      eval.l

+ 1 - 1
eval.l

@@ -15,7 +15,7 @@ VOID [ \n\t]
 %%
 
 [0-9]+      yylval = atoi(yytext); return number; // Number token
-[-*+()=]    return yytext[0]; // Operators
+[-*+()=/]   return yytext[0]; // Operators
 {VOID}+     ; // Skip white characters
 .           fprintf(stderr, "Input '%c' unknown\n", yytext[0]); // Fallback error