rustlings/exercises/variables/variables4.rs
UlyssesPrime 86f9341c62 Initial
2022-04-20 01:38:35 -04:00

8 lines
172 B
Rust

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