Complete primitive_types section

This commit is contained in:
Paul Czeresko 2019-07-21 10:00:10 -04:00
parent 9290bde71a
commit 46dd23f067
6 changed files with 7 additions and 6 deletions

View file

@ -10,7 +10,7 @@ fn main() {
println!("Good morning!");
}
let // Finish the rest of this line like the example! Or make it be false!
let is_evening = false; // Finish the rest of this line like the example! Or make it be false!
if is_evening {
println!("Good evening!");
}

View file

@ -14,9 +14,10 @@ fn main() {
println!("Neither alphabetic nor numeric!");
}
let // Finish this line like the example! What's your favorite character?
// Finish this line like the example! What's your favorite character?
// Try a letter, try a number, try a special character, try a character
// from a different language than your own, try an emoji!
let your_character = '6';
if your_character.is_alphabetic() {
println!("Alphabetical!");
} else if your_character.is_numeric() {

View file

@ -3,7 +3,7 @@
// Scroll down for hints!
fn main() {
let a = ???
let a = [0; 101];
if a.len() >= 100 {
println!("Wow, that's a big array!");

View file

@ -5,7 +5,7 @@
fn main() {
let a = [1, 2, 3, 4, 5];
let nice_slice = ???
let nice_slice = &a[1..3];
if nice_slice == [2, 3, 4] {
println!("Nice slice!");

View file

@ -4,7 +4,7 @@
fn main() {
let cat = ("Furry McFurson", 3.5);
let /* your pattern here */ = cat;
let (name, age) = cat;
println!("{} is {} years old.", name, age);
}

View file

@ -5,7 +5,7 @@
fn main() {
let numbers = (1, 2, 3);
println!("The second number is {}", ???);
println!("The second number is {}", numbers.1);
}