
Are there any recommendations or examples on how to deal with negative numbers and negated expressions?
int a = -1
int b = -(1 + 1)
Should the first example be handled in a regex number pattern? Or should both cases be handled in an expression production? I'm playing around with different options but thought I'd check and see if there were any existing examples or recommendations. Thanks!