Help for this page

Select Code to Download


  1. or download this
    my $list = [0..10];
    print @$list[3..6];
    
  2. or download this
    my @list = ([0..10]);
    print @{$list[0]}[3..6];