Stanislav Pankrashin 5e5351139a Revert "did some more"
This reverts commit 8239cc2be624d6a6cf040018b56fadbab282c3c9.
2022-06-23 17:06:12 +12:00

15 lines
312 B
Rust

// strings1.rs
// Make me compile without changing the function signature!
// Execute `rustlings hint strings1` for hints ;)
// I AM NOT DONE
fn main() {
let answer = current_favorite_color();
println!("My current favorite color is {}", answer);
}
fn current_favorite_color() -> String {
"blue"
}