Bend icon indicating copy to clipboard operation
Bend copied to clipboard

Warn when users use number literals of types that are incompatible with the operation

Open kings177 opened this issue 9 months ago • 2 comments

Is your feature request related to a problem? Please describe. When doing a XOR operation you get just the decimal

Describe the solution you'd like Would be better to get the bit value as an output, for instance when doing 2**4 to get 110 = 6 etc

Describe alternatives you've considered Maybe just getting the bit representation could also be good, and then if you want, in the code, you just pass the value back to decimal or something like that

Additional context I feel like it's weird that 2.0**2.0 is POW but 2**2 is XOR, it's kinda of confusing.

kings177 avatar May 24 '24 21:05 kings177