Help for this page

Select Code to Download


  1. or download this
    my @array = ('one', 'two', '', 'four', 'five');
    
  2. or download this
    my @array = qw(one two NULL four five);
    
  3. or download this
    my @array = qw(one two), '', qw(four five);