rustlings/exercises/variables/variables4.rs
2026-01-01 21:29:58 +01:00

10 lines
188 B
Rust

// variables4.rs
//
// Execute `rustlings hint variables4` or use the `hint` watch subcommand for a
// hint.
fn main() {
let x: i32 = 256 * 256 * 256;
println!("Number {}", x);
}