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);
|
|
}
|