Files
rustlings/exercises/09_strings/strings1.rs
T
2026-07-12 23:39:38 +02: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}");
}