- or download this
open(IN, '<', $source) or die "Couldn't open $source: $!\n";
- or download this
my @data = map [ split ], grep /\S/, <>; ### <> reads from stdin (or
+a file named on the command line) You would need <IN> instead.
- or download this
my @data = map [ split ], grep /\S/, <>;