in reply to Re^5: 5.40 released
in thread 5.40 released

Well, since i needed the iterator VALUE in the code, so for(0..9) was not an option. This is quite often the case in my code. To avoid mixing too many styles of constructs, i limited my coding style to use C-Style.

for my $i(0..9){...}

Or am I missing something?