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
use num_bigint::BigUint; fn main() { let small = 32768usize; let big = BigUint::from(small); println!("{small:x} {big:x}"); println!("{small:x?} {big:x?}"); }
Prints:
8000 8000 8000 32768
It should print:
8000 8000 8000 8000
The text was updated successfully, but these errors were encountered:
There's no public way for us to get that flag from the Formatter: rust-lang/rust#48584
Formatter
Sorry, something went wrong.
No branches or pull requests
Prints:
It should print:
The text was updated successfully, but these errors were encountered: