comprehensive-rust
comprehensive-rust copied to clipboard
Remove silence warnings in exercises
This code had variables in the function arguments that were not being used (yet). To address that, in this PR I use the function arguments in a print statement. This changes allow us to remove the line to silence warnings for unused variables https://github.com/google/comprehensive-rust/issues/71.
Alternatively, we could comment out the functions. As seen in #389.