Closed Mercerenies closed 1 month ago
x y^-1
This parses currently as (x^y) * (-1), which is just absolutely wrong. It should either parse as x * (y^(-1)) or be a parse error. I'd be fine with either.
(x^y) * (-1)
x * (y^(-1))
This parses currently as
(x^y) * (-1)
, which is just absolutely wrong. It should either parse asx * (y^(-1))
or be a parse error. I'd be fine with either.