summaryrefslogtreecommitdiff
path: root/exercises/11_hashmaps/hashmaps1.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/11_hashmaps/hashmaps1.rs')
-rw-r--r--exercises/11_hashmaps/hashmaps1.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/11_hashmaps/hashmaps1.rs b/exercises/11_hashmaps/hashmaps1.rs
index 5a52f61..51146df 100644
--- a/exercises/11_hashmaps/hashmaps1.rs
+++ b/exercises/11_hashmaps/hashmaps1.rs
@@ -24,6 +24,10 @@ fn fruit_basket() -> HashMap<String, u32> {
basket
}
+fn main() {
+ // You can optionally experiment here.
+}
+
#[cfg(test)]
mod tests {
use super::*;