Help for this page

Select Code to Download


  1. or download this
      my $text;
      for $text(@array){
         $hash->{$text}++}
    
  2. or download this
      my $text;
      foreach $text(@array){
         $hash->{$text}++}
    
  3. or download this
    my @foo = qw(bar baz ne);
    foreach (my $ix=0;$ix < @foo; $ix++){print $foo[$ix]}