rustlings/exercises/variables/variables6.rs
Steven Johnson ecfbe8728d work so far
2022-06-28 19:34:16 +12:00

8 lines
180 B
Rust

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