rustlings/exercises/variables/variables6.rs
2022-04-16 11:59:07 +03:00

10 lines
194 B
Rust

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