diff --git a/src/exercises/day-1/for-loops.md b/src/exercises/day-1/for-loops.md index c4824cb7dedf..1c42dfb16b1d 100644 --- a/src/exercises/day-1/for-loops.md +++ b/src/exercises/day-1/for-loops.md @@ -49,15 +49,14 @@ Hard-code both functions to operate on 3 × 3 matrices. Copy the code below to and implement the functions: -```rust,should_panic -// TODO: remove this when you're done with your implementation. -#![allow(unused_variables, dead_code)] - +```rust, should_panic {{#include for-loops.rs:transpose}} + println!("Use matrix {:?}", matrix); unimplemented!() } {{#include for-loops.rs:pretty_print}} + println!("Use matrix {:?}", matrix); unimplemented!() }