Complete variables section

This commit is contained in:
Paul Czeresko 2019-07-20 10:01:01 -04:00
parent b8368de6d5
commit d578d1966a
4 changed files with 4 additions and 4 deletions

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
x = 5;
let x = 5;
println!("x has the value {}", x);
}

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x;
let x: u32 = 9;
if x == 10 {
println!("Ten!");
} else {

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x = 3;
let mut x = 3;
println!("Number {}", x);
x = 5;
println!("Number {}", x);

View file

@ -2,7 +2,7 @@
// Make me compile! Scroll down for hints :)
fn main() {
let x: i32;
let x: i32 = 69;
println!("Number {}", x);
}