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

10 lines
175 B
Rust

// variables4.rs
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
fn main() {
let x: i32 = -4;
println!("Number {}", x);
}