mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-01-03 09:19:18 +00:00
9 lines
179 B
Rust
9 lines
179 B
Rust
// variables6.rs
|
|
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
|
|
|
|
|
|
const NUMBER:i8 = 3;
|
|
fn main() {
|
|
println!("Number {}", NUMBER);
|
|
}
|