MC logo

Echo IV

  Code Examples

<<Echo III echo4.pl Control Constructs>>
use strict;

# Echo input to output, using <> and $_ defaults.
while(<>) {
    print;
}
<<Echo III Control Constructs>>