We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3963559 + c5ecc37 commit 5a8f2b6Copy full SHA for 5a8f2b6
exercises/standard_library_types/box1.rs
@@ -10,7 +10,7 @@
10
// elements: the value of the current item and the next item. The last item is a value called `Nil`.
11
//
12
// Step 1: use a `Box` in the enum definition to make the code compile
13
-// Step 2: create both empty and non-empty cons lists by replacing `unimplemented!()`
+// Step 2: create both empty and non-empty cons lists by replacing `todo!()`
14
15
// Note: the tests should not be changed
16
@@ -33,11 +33,11 @@ fn main() {
33
}
34
35
pub fn create_empty_list() -> List {
36
- unimplemented!()
+ todo!()
37
38
39
pub fn create_non_empty_list() -> List {
40
41
42
43
#[cfg(test)]
0 commit comments