rustlings/exercises/variables/variables6.rs
2021-05-09 22:48:10 +08:00

8 lines
184 B
Rust

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