-
728x90
https://users.rust-lang.org/t/how-would-i-store-hexedecimal-values-in-a-variable/45545/6
How would I store hexedecimal values in a variable?
Just to make it explicit in case you don't know. If your value is not provided as string you can write hex-literals directly in your source code, e.g. let dec: u32 = 15; let hex: u32 = 0xF; let bin: u32 = 0b1111; let oct: u32 = 0o17; assert_eq!(dec, hex);
users.rust-lang.org
반응형'코딩Coding > ★Rust★기초★Syntax' 카테고리의 다른 글
How to draw a pixel to the screen ? (0) 2023.09.16 Teaching Rust in 5 days (0) 2023.09.14 What's the difference between Arc<Mutex<_>> and std::sync::atomic::Atomic_? (0) 2023.09.10 How to create a cyclic reference with Arc and Weak? (0) 2023.09.10 Rust by Example Read-Through(All of Rust) | timClicks (0) 2023.09.04 파이썬 개발자의 위한 러스트 배우기 좋은 eBook(Rust Tutorial) (0) 2023.08.17 Rust❤️Adding Text to an SDL Canvas using Rust | Electro Cat Studios (0) 2023.08.17 RUST 14 모듈과 워크스페이스(한글 러스트 자료 정리 잘 됨)굿👍Rust - 새로운 시작 (0) 2023.08.16