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
My (embedded) usage is more annoying than it has to be because we can't operate upon bits easily.
These should both just work:
(print "%d" 0xff) (print "%d" 0b01010101)
Making the change is trivial, and would benefit others.
Not sure if I need to port my bit-manipulation operations, but since it's all tied to the hardware it's probably not so worthwhile.
The text was updated successfully, but these errors were encountered:
Allow hexadecimal/binary literals.
a49573d
This closes #78 by adding native support for hexadecimal and binary literals. For example: * `(print 0xff)` * `(print 0b00000010)`
skx
Successfully merging a pull request may close this issue.
My (embedded) usage is more annoying than it has to be because we can't operate upon bits easily.
These should both just work:
Making the change is trivial, and would benefit others.
Not sure if I need to port my bit-manipulation operations, but since it's all tied to the hardware it's probably not so worthwhile.
The text was updated successfully, but these errors were encountered: