- or download this
my $output = new OUTFILE ('>C:\Program Files\cron\Cruise Ships\ship_da
+ta.csv');
- or download this
my $output = OUTFILE->new('>C:\Program Files\cron\Cruise Ships\ship_da
+ta.csv');
- or download this
open(my $output, '>', 'C:\\Program Files\\cron\\Cruise Ships\\ship_dat
+a.csv');
- or download this
use IO::Handle qw( );
...
...
OUTFILE->print ( join(',', @$row), "\n");
- or download this
my $out_fn = 'C:\\Program Files\\cron\\Cruise Ships\\ship_data.csv';
open(my $out_fh, '>', $out_fn)
...
...
$out_fh->print ( join(',', @$row), "\n");