add I AM NOT DONE comments
This commit is contained in:
parent
5b6e23c323
commit
0f8001ea44
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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,
|
||||
|
|
Loading…
Reference in New Issue