variables 3

This commit is contained in:
Paul Scarrone 2023-02-12 19:28:54 -05:00
parent fa3c231e70
commit 44eb9f7c3c

View File

@ -1,9 +1,9 @@
// variables3.rs
// Execute `rustlings hint variables3` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x: i32;
x = 10;
println!("Number {}", x);
println!("Number {x}");
}