diff --git a/src/exercises/day-1/book-library.rs b/src/exercises/day-1/book-library.rs index d6c0285f..cab1879f 100644 --- a/src/exercises/day-1/book-library.rs +++ b/src/exercises/day-1/book-library.rs @@ -96,10 +96,10 @@ impl Library { } // ANCHOR: main +// This shows the desired behavior. Uncomment the code below and +// implement the missing methods. You will need to update the +// method signatures, including the "self" parameter! fn main() { - // This shows the desired behavior. Uncomment the code below and - // implement the missing methods. You will need to update the - // method signatures, including the "self" parameter! let library = Library::new(); //println!("Our library is empty: {}", library.is_empty());