summaryrefslogtreecommitdiff
path: root/exercises
diff options
context:
space:
mode:
authorsjmann <sjmann91@gmail.com>2020-02-28 00:31:55 +0000
committersjmann <sjmann91@gmail.com>2020-02-28 00:31:55 +0000
commit0f8001ea449c278faea0e731b49a5eb3dcd28634 (patch)
tree17cff97cb7751734b7bfe55c351807371049499f /exercises
parent5b6e23c323a320ca8306c7645bead2132590624e (diff)
add I AM NOT DONE comments
Diffstat (limited to 'exercises')
-rw-r--r--exercises/generics/generics2.rs2
-rw-r--r--exercises/generics/generics3.rs1
2 files changed, 3 insertions, 0 deletions
diff --git a/exercises/generics/generics2.rs b/exercises/generics/generics2.rs
index 7b9bfc4..1fe5041 100644
--- a/exercises/generics/generics2.rs
+++ b/exercises/generics/generics2.rs
@@ -1,5 +1,7 @@
// This powerful wrapper provides the ability to store a positive integer value.
// Rewrite it using generics so that it supports wrapping ANY type.
+
+// I AM NOT DONE
struct Wrapper<u32> {
value: u32
}
diff --git a/exercises/generics/generics3.rs b/exercises/generics/generics3.rs
index e19142d..cd3232a 100644
--- a/exercises/generics/generics3.rs
+++ b/exercises/generics/generics3.rs
@@ -6,6 +6,7 @@
// Make the necessary code changes to support alphabetical report cards, thereby making the second
// test pass.
+// I AM NOT DONE
pub struct ReportCard {
pub grade: f32,
pub student_name: String,