examples/plop.rs
fn main() {
let a = std::thread::spawn(|| {});
let a: u32 = 123;
let b: u32 = 12 << 16 | 13;
println!("{:?}\n{:?}", a.to_le_bytes(), b.to_le_bytes());
let c: u64 = 12 << 48 | 13 << 32 | 123;
println!("{:?}", c.to_le_bytes())
}