rustlings/exercises/variables/variables6.rs
2022-11-13 12:40:19 +05:30

8 lines
178 B
Rust

// variables6.rs
// Execute `rustlings hint variables6` or use the `hint` watch subcommand for a hint.
const NUMBER: usize = 3;
fn main() {
println!("Number {}", NUMBER);
}