2019-11-11 10:51:38 -05:00
|
|
|
// Make me compile without changing the function signature!
|
2015-09-20 18:03:00 -04:00
|
|
|
|
|
|
|
fn main() {
|
2016-04-19 16:15:21 -04:00
|
|
|
let word = String::from("green"); // Try not changing this line :)
|
|
|
|
if is_a_color_word(word) {
|
|
|
|
println!("That is a color word I know!");
|
2015-09-20 18:03:00 -04:00
|
|
|
} else {
|
2016-04-19 16:15:21 -04:00
|
|
|
println!("That is not a color word I know.");
|
2015-09-20 18:03:00 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-19 16:15:21 -04:00
|
|
|
fn is_a_color_word(attempt: &str) -> bool {
|
|
|
|
attempt == "green" || attempt == "blue" || attempt == "red"
|
2015-09-20 18:03:00 -04:00
|
|
|
}
|