rustlings/exercises/variables/variables6.rs
2022-01-19 21:07:06 -04:00

10 lines
250 B
Rust

// variables6.rs
// Make me compile! Execute the command `rustlings hint variables6` if you want a hint :)
// I AM NOT DONE
const NUMBER : i32 = 3; // ### Constants may always have a type annotation
fn main() {
println!("Number {}", NUMBER);
}