rustlings/exercises/variables/variables6.rs
blacktoast 30b4480ca3 test
2021-09-28 05:54:31 +00:00

12 lines
194 B
Rust

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