mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-11 05:09:19 +00:00
12 lines
194 B
Rust
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);
|
|
}
|