rustlings/exercises/variables/variables6.rs
Mustakim-Khan 0646013237 seance 1
2021-04-13 17:33:22 +02:00

10 lines
181 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);
}