Language Tidy Up Feature 1 - unwrap Shorthand (!)

At least, it should thus require not to be combined like that without parentheses. Similar to how ==, !=, <, >, <=, >=, .., and ..= require parentheses to be combined with operators of the same precedence level.

1 Like

Better solution:

a !& b !& c = (a !& b) !& c

Exactly as

a / b / c = (a / b) / c

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.