- or download this
while (<>) {
}
- or download this
while (defined( my $line = <>)) {
}
- or download this
perl -MO=Deparse -e 'while (<>) {}'
while (defined($_ = <ARGV>)) {
();
}
- or download this
perl -MO=Deparse -e ' if(1) {print "true"}'
do {
print 'true'
};
- or download this
perl -MO=Deparse -e ' print "true" if 1'
print 'true';