rustlings/exercises/variables/variables6.rs
2021-09-28 05:58:55 +00:00

13 lines
204 B
Rust

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