Fixed precedence.

This commit is contained in:
Jacob Signorovitch 2025-01-04 14:01:05 -05:00
parent 35322de3ac
commit 0731e40e6a

View File

@ -35,8 +35,8 @@
%token NL
%left DIV PLUS MULT SUB
%left PLUS SUB
%left MULT DIV
%precedence NEG
%type<fval> num;