rustlings/exercises/variables/variables6.rs
CelestialMelody 761945c40c day one
2022-07-01 17:42:18 +08:00

10 lines
183 B
Rust

// variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
const NUMBER : i32 = 3;
fn main() {
println!("Number {}", NUMBER);
}