Using Filehandles
- You already know how to read!
my @lines = <JOURNAL>;
- print takes an extra argument with no comma. All of these do the same thing:
print STDERR "I'm eating biscuit $num\n";
print STDERR ("I'm eating biscuit $num\n");
print( STDERR "I'm eating biscuit $num\n" );