2018-02-22 06:09:53 +00:00
|
|
|
// strings2.rs
|
2019-11-11 15:51:38 +00:00
|
|
|
// Make me compile without changing the function signature!
|
|
|
|
// Execute `rustlings hint strings2` for hints :)
|
2015-09-20 22:03:00 +00:00
|
|
|
|
2019-11-11 12:38:24 +00:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-20 22:03:00 +00:00
|
|
|
fn main() {
|
2016-04-19 20:15:21 +00: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 22:03:00 +00:00
|
|
|
} else {
|
2016-04-19 20:15:21 +00:00
|
|
|
println!("That is not a color word I know.");
|
2015-09-20 22:03:00 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-04-19 20:15:21 +00:00
|
|
|
fn is_a_color_word(attempt: &str) -> bool {
|
|
|
|
attempt == "green" || attempt == "blue" || attempt == "red"
|
2015-09-20 22:03:00 +00:00
|
|
|
}
|