65001 opened this issue 6 years ago · 0 comments
The expression 1/2x currently evaluates to 1 / 2 x * but this is invalid postfix notation. There are two ways of expressing this expression.
1/2x
1 / 2 x *
1 2 / x *
(1 / 2) * x
1 2 x * /
1 /(2x)