Help for this page

Select Code to Download


  1. or download this
    use Tie::Array::CSV;
    my $filename = 'tied.csv';
    tie my @file, 'Tie::Array::CSV', $filename;
    push(@file,[4,5,6]);
    untie @file;