# New Ticket Created by Gabor Szabo # Please include the string: [perl #62478] # in the subject line of all future correspondence about this issue. # <URL: http://rt.perl.org/rt3/Ticket/Display.html?id=62478 >
for (my $i = 1; $i <= 3; $i++) { say $i; } prints 2 instead of giving an intelligent error message that one should use loop or better yet for 1..3 -> $i { } Gabor