feat: Add traits4.rs exercise

This commit is contained in:
Sam White
2022-02-25 16:41:10 +00:00
committed by mokou
parent f43c6d7877
commit 599d634ee2
2 changed files with 55 additions and 0 deletions

View File

@@ -716,6 +716,17 @@ implement the function themselves.
See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#default-implementations
"""
[[exercises]]
name = "traits4"
path = "exercises/traits/traits4.rs"
mode = "test"
hint = """
Instead of using concrete types as parameters you can use traits. Try replacing the
'??' with 'impl <what goes here?>'
See the documentation at: https://doc.rust-lang.org/book/ch10-02-traits.html#traits-as-parameters
"""
# QUIZ 3
[[exercises]]