Exercise 38

This commit is contained in:
akshitgautam42 2023-11-13 17:59:37 +05:30
parent 881be79991
commit d6b32a0d69

View File

@ -5,7 +5,7 @@
// Execute `rustlings hint strings1` or use the `hint` watch subcommand for a
// hint.
// I AM NOT DONE
fn main() {
let answer = current_favorite_color();
@ -13,5 +13,5 @@ fn main() {
}
fn current_favorite_color() -> String {
"blue"
"blue".to_string()
}