You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Thanks for the report. In evalexpr you can chain the unary negation
operator. So `2--1` gets parsed as `2 - (-1)` and `2---1` gets parsed as `2
- (-(-1))`.
2 --- 1
evaluates to 12 -- 1
evaluates to 3The text was updated successfully, but these errors were encountered: