rustlings/exercises/variables/variables6.rs
2020-06-21 20:24:19 +02:00

8 lines
208 B
Rust

// variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
const NUMBER: u8 = 3; // const's must be annotated
fn main() {
println!("Number {}", NUMBER);
}