comprehensive-rust
comprehensive-rust copied to clipboard
Remove silenced warnings in for-loops exercise
This code had variables in the function arguments that were not being used (yet). To address that, in this PR I commented out the functions. This changes allow us to remove the line to silence warnings for unused variables #71.
Alternatively, we could keep the functions commented in and use their arguments in a print statement. As seen in #392.