print $_ if $_ % 2 while ; # not legal in Perl, but in pseudo-BASIC-PLUS #### $_ % 2 and print $_ while ; #### while () { print $_ if $_ % 2 }