From 3a172ccf30162a8e6d372becca3d772ec15e3f07 Mon Sep 17 00:00:00 2001 From: "Carol (Nichols || Goulding)" Date: Tue, 19 Apr 2016 16:15:21 -0400 Subject: Make strings2 less confusing, thank you @glenjamin!! :tada: Fixes #41. --- strings/strings2.rs | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) (limited to 'strings') diff --git a/strings/strings2.rs b/strings/strings2.rs index 235468b..df0d46a 100644 --- a/strings/strings2.rs +++ b/strings/strings2.rs @@ -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" } -- cgit v1.2.3