Help for this page

Select Code to Download


  1. or download this
    for ('something' .. 'something else') {
    my $var = $_;
    
  2. or download this
    for my $var ('something' .. 'something else') {
    
  3. or download this
    $bucket{$x}{$y} = ();
    
  4. or download this
    for my $month ('02'..'03') {
      for my $day ('00' .. $mons{$month}) {
    ...
        }
      }
    }