🚧Variables: Exercise 4

This commit is contained in:
ynhhoJ 2022-04-16 11:40:20 +03:00
parent a3d18c416b
commit 33920c9143

View File

@ -1,9 +1,9 @@
// variables4.rs
// Make me compile! Execute the command `rustlings hint variables4` if you want a hint :)
// I AM NOT DONE
// I AM DONE
fn main() {
let x: i32;
let x: i32 = 1337;
println!("Number {}", x);
}