Joe

Results 4 comments of Joe

a side effect is that the following code doesn't work: ``` print "cube root 27 = " + 27.0^^(1/3.0) ``` The above code attempts to raise a String to the...

can be easily fixed by splitting the MATHOP token into precedence groups, and defining precedence. e.g. - `+`, `-` - `*`, `/` - `^^`

Workaround right now is discrete if statements ``` x == 1 && y == 1 if echo "x=1 y=1, " y!=1 && x==1 if echo "x=1 y!=1, " y==1 &&...

Hi, I've been using bison version 3.0.2, which given the version number increment, may be a breaking difference. Also, my flex version for this project is 2.5.35. I don't know...