We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I would expect fifty two to be 52, but instead, that input is parsed as multiplying fifty by two:
fifty two
52
fifty
two
> fifty two 100 > @debug fifty two 1 fifty (= 50) * two (= 2) (base 10, auto, simplifiable)
With a hyphen, the value is still not correct, but the operation is instead subtraction:
> fifty-two 48 > @debug fifty-two 48/50 fifty (= 50) (base 10, auto, simplifiable)
The text was updated successfully, but these errors were encountered:
Thanks for the bug report!
Sorry, something went wrong.
No branches or pull requests
I would expect
fifty two
to be52
, but instead, that input is parsed as multiplyingfifty
bytwo
:With a hyphen, the value is still not correct, but the operation is instead subtraction:
The text was updated successfully, but these errors were encountered: