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
At the moment, Vale only has support for signed integers. It would be highly beneficial the addition of unsigned ones.
I propose making integers unsigned by default. Most of the times negative numbers aren't needed, and they can be source of bugs.
To make integers signed, an explicit sign is required before the literal.
unsigned u32 = 3
signed i32 = +3
The text was updated successfully, but these errors were encountered:
At the moment, Vale only has support for signed integers. It would be highly beneficial the addition of unsigned ones.
I propose making integers unsigned by default. Most of the times negative numbers aren't needed, and they can be source of bugs.
To make integers signed, an explicit sign is required before the literal.
The text was updated successfully, but these errors were encountered: