mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-09 04:09:20 +00:00
13 lines
217 B
Rust
13 lines
217 B
Rust
// variables6.rs
|
|
//
|
|
// Make me compile!
|
|
//
|
|
// If you need help, open the corresponding README.md or run: rustlings hint variables6
|
|
|
|
// I AM NOT DONE
|
|
|
|
const NUMBER = 3;
|
|
fn main() {
|
|
println!("Number {}", NUMBER);
|
|
}
|