mirror of
https://git.aramjonghu.dev/AramJonghu/rustlings.git
synced 2026-09-02 00:13:30 +02:00
11 lines
229 B
Rust
11 lines
229 B
Rust
// Make me compile without changing the function signature!
|
|
|
|
fn main() {
|
|
let answer = current_favorite_color();
|
|
println!("My current favorite color is {}", answer);
|
|
}
|
|
|
|
fn current_favorite_color() -> String {
|
|
"blue"
|
|
}
|