summaryrefslogtreecommitdiff
path: root/exercises/09_strings/strings2.rs
blob: 4768278171e8bc057d15bba833b8cd514abf9405 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Make me compile without changing the function signature!

fn main() {
    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!("That is not a color word I know.");
    }
}

fn is_a_color_word(attempt: &str) -> bool {
    attempt == "green" || attempt == "blue" || attempt == "red"
}