Vedant-asati 88725467dc d2
2025-01-01 15:26:13 +05:30

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}");
}