jiangfangping 512d418f7f strings
2024-07-09 15:35:42 +08:00

10 lines
253 B
Rust

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