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
Indeed, thanks for reporting this. The rule for unpaired hex number is assuming - wrongly - that something like this 123 it read as 12 03, hence why you see these results.
>>> hex "123"
# hex("123")
out = 4611
>>> hex "1203"
# hex("1203")
out = 4611
KALK 0.4.0 is not converting well hex numbers to decimal.
For instance 0x0123 should be 291:
It only happens when the HEX number is expressed with odds digits...
The text was updated successfully, but these errors were encountered: