1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-09-27 15:00:41 +02:00

Make strings2 less confusing, thank you @glenjamin!! 🎉

Fixes #41.
This commit is contained in:
Carol (Nichols || Goulding) 2016-04-19 16:15:21 -04:00
parent 4bf727cbf7
commit 3a172ccf30
2 changed files with 7 additions and 8 deletions

File diff suppressed because one or more lines are too long

View File

@ -1,17 +1,16 @@
// Make me compile without changing the function signature! Scroll down for hints :)
fn main() {
let guess1 = "blue".to_string(); // Try not changing this line :)
let correct = guess_favorite_color(guess1);
if correct {
println!("You guessed correctly!");
let word = String::from("green"); // Try not changing this line :)
if is_a_color_word(word) {
println!("That is a color word I know!");
} else {
println!("Nope, that's not it.");
println!("That is not a color word I know.");
}
}
fn guess_favorite_color(attempt: &str) -> bool {
attempt == "green"
fn is_a_color_word(attempt: &str) -> bool {
attempt == "green" || attempt == "blue" || attempt == "red"
}