The default input and pattern-searching variable, used in:
m// s/// tr/// when used without =~
<FH> when it is the sole criterion
of a while test.
# input
while(<>){...} # only equivalent in while
while( defined( $_ = <>)){...}
# input and pattern matching
while( <FILE>){ print if /http:/;}