Skip to content

Commit 0f8001e

Browse files
committed
add I AM NOT DONE comments
1 parent 5b6e23c commit 0f8001e

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

exercises/generics/generics2.rs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
// This powerful wrapper provides the ability to store a positive integer value.
22
// Rewrite it using generics so that it supports wrapping ANY type.
3+
4+
// I AM NOT DONE
35
struct Wrapper<u32> {
46
value: u32
57
}

exercises/generics/generics3.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
// Make the necessary code changes to support alphabetical report cards, thereby making the second
77
// test pass.
88

9+
// I AM NOT DONE
910
pub struct ReportCard {
1011
pub grade: f32,
1112
pub student_name: String,

0 commit comments

Comments
 (0)