Skip to content

Commit

Permalink
add I AM NOT DONE comments
Browse files Browse the repository at this point in the history
  • Loading branch information
sjmann committed Feb 28, 2020
1 parent 5b6e23c commit 0f8001e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
2 changes: 2 additions & 0 deletions exercises/generics/generics2.rs
Original file line number Diff line number Diff line change
@@ -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
}
Expand Down
1 change: 1 addition & 0 deletions exercises/generics/generics3.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit 0f8001e

Please sign in to comment.