2018-02-22 13:09:53 +07:00
|
|
|
// strings1.rs
|
2019-11-11 22:51:38 +07:00
|
|
|
// Make me compile without changing the function signature!
|
|
|
|
// Execute `rustlings hint strings1` for hints ;)
|
2015-09-21 04:03:00 +06:00
|
|
|
|
2019-11-11 19:38:24 +07:00
|
|
|
// I AM NOT DONE
|
|
|
|
|
2015-09-21 04:03:00 +06:00
|
|
|
fn main() {
|
|
|
|
let answer = current_favorite_color();
|
|
|
|
println!("My current favorite color is {}", answer);
|
|
|
|
}
|
|
|
|
|
|
|
|
fn current_favorite_color() -> String {
|
|
|
|
"blue"
|
|
|
|
}
|