Help for this page

Select Code to Download


  1. or download this
    # Perl 6 (possible typos ahead)
    my @array = qw(foo bar baz this that the other thing);
    my $word  = @array[0];     # a single value
    my @words = @array[5,6,7]; # an array slice
    
  2. or download this
    @_[1..$#_];           # all but the first element of an argument list
    @{$var}{qw(foo bar)}; # a hash slice of a hash reference