summaryrefslogtreecommitdiff
path: root/exercises/03_if/if2.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/03_if/if2.rs')
-rw-r--r--exercises/03_if/if2.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/03_if/if2.rs b/exercises/03_if/if2.rs
index 7b9c05f..a1ed5c8 100644
--- a/exercises/03_if/if2.rs
+++ b/exercises/03_if/if2.rs
@@ -13,6 +13,10 @@ pub fn foo_if_fizz(fizzish: &str) -> &str {
}
}
+fn main() {
+ // You can optionally experiment here.
+}
+
// No test changes needed!
#[cfg(test)]
mod tests {