diff options
Diffstat (limited to 'exercises/03_if/if3.rs')
| -rw-r--r-- | exercises/03_if/if3.rs | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/03_if/if3.rs b/exercises/03_if/if3.rs index caba172..0b44c5a 100644 --- a/exercises/03_if/if3.rs +++ b/exercises/03_if/if3.rs @@ -27,6 +27,10 @@ pub fn animal_habitat(animal: &str) -> &'static str { habitat } +fn main() { + // You can optionally experiment here. +} + // No test changes needed. #[cfg(test)] mod tests { |
