summaryrefslogtreecommitdiff
path: root/exercises/15_traits/traits3.rs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/15_traits/traits3.rs')
-rw-r--r--exercises/15_traits/traits3.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/exercises/15_traits/traits3.rs b/exercises/15_traits/traits3.rs
index 357f1d7..8412afa 100644
--- a/exercises/15_traits/traits3.rs
+++ b/exercises/15_traits/traits3.rs
@@ -23,6 +23,10 @@ struct OtherSoftware {
impl Licensed for SomeSoftware {} // Don't edit this line
impl Licensed for OtherSoftware {} // Don't edit this line
+fn main() {
+ // You can optionally experiment here.
+}
+
#[cfg(test)]
mod tests {
use super::*;