rustlings/exercises/variables/variables6.rs

8 lines
217 B
Rust
Raw Normal View History

// variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
2022-05-28 03:04:58 +03:00
const NUMBER: i32 = 3; // Consts need to be assigned a type
fn main() {
println!("Number {}", NUMBER);
}