rustlings/exercises/variables/variables6.rs
2021-01-29 20:52:48 +00:00

8 lines
182 B
Rust

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