Help for this page

Select Code to Download


  1. or download this
    my $output = new OUTFILE ('>C:\Program Files\cron\Cruise Ships\ship_da
    +ta.csv');
    ...
    
    # and later
    print (OUTFILE $input);
    
  2. or download this
    open my $output, '>', q{C:\Program Files\cron\Cruise Ships\ship_data.c
    +sv};
    
    # and later
    print {$output} $input;