in reply to C<while> magic also working with glob(): intentional or not?
> perl -MO=Deparse -e "while(glob('*')){ print }" use File::Glob (); while (defined($_ = glob('*'))) { print $_; } -e syntax OK [download]