rust-unofficial / too-many-lists

Learn Rust by writing Entirely Too Many linked lists
https://rust-unofficial.github.io/too-many-lists/
MIT License
3.16k stars 276 forks source link

Warnings about unused variables #274

Open shyamjayakannan opened 1 year ago

shyamjayakannan commented 1 year ago

The warnings about unused variables that appear on running cargo build can be removed by adding #![allow(dead_code)] at the top of the file.

Or do you keep them intentionally?