2019-11-11 10:51:38 -05:00
|
|
|
// Make me compile without changing the function signature!
|
2015-09-20 18:03:00 -04:00
|
|
|
|
|
|
|
fn main() {
|
|
|
|
let answer = current_favorite_color();
|
|
|
|
println!("My current favorite color is {}", answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn current_favorite_color() -> String {
|
|
|
|
"blue"
|
|
|
|
}
|