summaryrefslogtreecommitdiff
path: root/exercises/structs
diff options
context:
space:
mode:
Diffstat (limited to 'exercises/structs')
-rw-r--r--exercises/structs/structs1.rs2
-rw-r--r--exercises/structs/structs2.rs2
2 files changed, 4 insertions, 0 deletions
diff --git a/exercises/structs/structs1.rs b/exercises/structs/structs1.rs
index 138b3fd..6d0b2f4 100644
--- a/exercises/structs/structs1.rs
+++ b/exercises/structs/structs1.rs
@@ -1,6 +1,8 @@
// structs1.rs
// Address all the TODOs to make the tests pass!
+// I AM NOT DONE
+
struct ColorClassicStruct {
// TODO: Something goes here
}
diff --git a/exercises/structs/structs2.rs b/exercises/structs/structs2.rs
index db381e7..0699137 100644
--- a/exercises/structs/structs2.rs
+++ b/exercises/structs/structs2.rs
@@ -2,6 +2,8 @@
// Address all the TODOs to make the tests pass!
// No hints, just do it!
+// I AM NOT DONE
+
#[derive(Debug)]
struct Order {
name: String,