Help for this page

Select Code to Download


  1. or download this
      my %hash = (one => 1, two => 2);
      print "$hash{one}\n";
    
  2. or download this
      print "@{[ %hash ]}\n";
    
  3. or download this
      print "@{ for (1 .. 2) { print qq(Hi!\n); } [ qq(Bye!\n) ]}";