Help for this page

Select Code to Download


  1. or download this
    use strict;
    
    ...
    
       print join("\n", @$array), "\n";
    }
    
  2. or download this
    # this is not really correct:
    my @array = [0,1,2,3,4,5];
    ...
    
    # or this:
    my @array = (0,1,2,3,4,5);