When using a for loop
for i in 1..10 {}
The compiler tells me to prefix i
like this: _i
.
What am I actually conveying by putting the underscore in front of variables or functions?
When using a for loop
for i in 1..10 {}
The compiler tells me to prefix i
like this: _i
.
What am I actually conveying by putting the underscore in front of variables or functions?