rustlings/exercises/variables/variables6.rs
2022-11-02 11:28:02 -05:00

8 lines
178 B
Rust

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