rustlings/exercises/09_strings/strings1.rs

10 lines
244 B
Rust
Raw Permalink Normal View History

2024-10-28 20:46:17 +00:00
// TODO: Fix the compiler error without changing the function signature.
fn current_favorite_color<'a>() -> &'a str {
"blue"
}
fn main() {
let answer = current_favorite_color();
println!("My current favorite color is {answer}");
}