- or download this
open FILE, "$dest";
my @lines = <FILE>;
close FILE;
- or download this
use IO::File;
my $file = new IO::File($dest, '<')
or die "Oops, couldn't open $dest: $!";
- or download this
open FILE, '<', $dest
or die "Oops, couldn't open $dest: $!";
- or download this
$a = "@{[print hello]}";
$z = "$a"; # no output
$z = "@{[print hello]}"; # output: hello