strings2 solution

This commit is contained in:
mo8it
2024-06-22 12:14:04 +02:00
parent bd63ece47c
commit f574905b8e
3 changed files with 22 additions and 8 deletions
+15 -1
View File
@@ -1 +1,15 @@
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
fn is_a_color_word(attempt: &str) -> bool {
attempt == "green" || attempt == "blue" || attempt == "red"
}
fn main() {
let word = String::from("green");
if is_a_color_word(&word) {
// ^ added to have `&String` which is automatically
// coerced to `&str` by the compiler.
println!("That is a color word I know!");
} else {
println!("That is not a color word I know.");
}
}