From 96d799cde0b24e85bf58a4fbf9f29d9adeb8d5aa Mon Sep 17 00:00:00 2001 From: Stirling Hostetter Date: Wed, 2 Nov 2022 12:02:38 -0500 Subject: [PATCH] complete if2 --- exercises/if/if2.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/exercises/if/if2.rs b/exercises/if/if2.rs index effddbb6..5facfc62 100644 --- a/exercises/if/if2.rs +++ b/exercises/if/if2.rs @@ -4,13 +4,13 @@ // Step 2: Get the bar_for_fuzz and default_to_baz tests passing! // Execute `rustlings hint if2` or use the `hint` watch subcommand for a hint. -// I AM NOT DONE - pub fn foo_if_fizz(fizzish: &str) -> &str { if fizzish == "fizz" { "foo" + } else if fizzish == "fuzz"{ + "bar" } else { - 1 + "baz" } }