This commit is contained in:
aottolini 2023-01-01 19:49:25 -03:00
parent c2b67b25a6
commit 17db8de9b5
2 changed files with 1 additions and 5 deletions

View File

@ -1,8 +1,6 @@
// variables2.rs
// Execute `rustlings hint variables2` or use the `hint` watch subcommand for a hint.
// I AM NOT DONE
fn main() {
let x: u32 = 10;
if x == 10 {

View File

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