From d6b32a0d6974dca9103875dec4af9f813f41cff7 Mon Sep 17 00:00:00 2001 From: akshitgautam42 Date: Mon, 13 Nov 2023 17:59:37 +0530 Subject: [PATCH] Exercise 38 --- exercises/09_strings/strings1.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/exercises/09_strings/strings1.rs b/exercises/09_strings/strings1.rs index f50e1fa9..b8e968ee 100644 --- a/exercises/09_strings/strings1.rs +++ b/exercises/09_strings/strings1.rs @@ -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() }