Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        push @array, 'ree';
        print "@array\n";
    }
    
  2. or download this
    my @array= (qw(data1 data2), ('ree') x 7);
    
    print "@array\n";