This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.
2024-10-29 11:28:19 +01:00

10 lines
251 B
Rust

// TODO: Fix the compiler error without changing the function signature.
fn current_favorite_color() -> String {
"blue".to_string()
}
fn main() {
let answer = current_favorite_color();
println!("My current favorite color is {answer}");
}