Help for this page

Select Code to Download


  1. or download this
    @array = (0,1,2);
    print $array[1]; 
          ^
    
  2. or download this
    my %hash = (fruit=>banana, veg=>'cucumber');
    print $hash{fruit};
          ^
    
  3. or download this