1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
### What it does This lint warns when you use `println!("")` to print a newline. ### Why is this bad? You should use `println!()`, which is simpler. ### Example ``` println!(""); ``` Use instead: ``` println!(); ```