diff options
| author | Juan Pablo Ramirez <juan.ramirez.q@gmail.com> | 2021-05-11 14:50:05 -0500 |
|---|---|---|
| committer | Juan Pablo Ramirez <juan.ramirez.q@gmail.com> | 2021-05-11 14:50:05 -0500 |
| commit | 31457940846b3844d78d4a4d2b074bc8d6aaf1eb (patch) | |
| tree | d63f804bc8c592ec67303b0f64e6615ae362f80b /exercises | |
| parent | d9b69bd1a0a7a99f2c0d80933ad2eea44c8c71b2 (diff) | |
fix: add hints to generics1 and generics2 exercises
Diffstat (limited to 'exercises')
| -rw-r--r-- | exercises/generics/generics1.rs | 2 | ||||
| -rw-r--r-- | exercises/generics/generics2.rs | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/exercises/generics/generics1.rs b/exercises/generics/generics1.rs index 967287e..f93e64a 100644 --- a/exercises/generics/generics1.rs +++ b/exercises/generics/generics1.rs @@ -1,6 +1,8 @@ // This shopping list program isn't compiling! // Use your knowledge of generics to fix it. +// Execute `rustlings hint generics1` for hints! + // I AM NOT DONE fn main() { diff --git a/exercises/generics/generics2.rs b/exercises/generics/generics2.rs index 0cb59ad..1501529 100644 --- a/exercises/generics/generics2.rs +++ b/exercises/generics/generics2.rs @@ -1,6 +1,8 @@ // This powerful wrapper provides the ability to store a positive integer value. // Rewrite it using generics so that it supports wrapping ANY type. +// Execute `rustlings hint generics2` for hints! + // I AM NOT DONE struct Wrapper { |
