Help for this page

Select Code to Download


  1. or download this
    my @data = [1,5,7,8,9,10,11,3,3,5,5,5,7,2,2];
    
  2. or download this
    my $data = [1,5,7,8,9,10,11,3,3,5,5,5,7,2,2];
    
  3. or download this
    use strict;
    
    ...
        chomp;
        push @data, [split /,/];
    }