diff --git a/subjects/box_recursion/README.md b/subjects/box_recursion/README.md index 065d37e9..e5b15258 100644 --- a/subjects/box_recursion/README.md +++ b/subjects/box_recursion/README.md @@ -14,12 +14,14 @@ You must also create a type named `Link`. This will be the connection between th ### Expected Functions and structures ```rust +#[derive(Debug)] pub struct WorkEnvironment { pub grade: Link, } pub type Link = +#[derive(Debug)] pub struct Worker { pub role: String, pub name: String,