fn main() { let age: u8 = 30; let population: i64 = 8_000_000_000; let byte_max = u8::MAX; println!("Age: {}, world population: {}, u8 max: {}", age, population, byte_max); }
Click Run to execute this code.