Help for this page

Select Code to Download


  1. or download this
    for my $text ( qw( one two three four five six seven eight nine ten ) 
    +)
    {
      my $uniq_text = $text; # Copy
      ... # Your code, where $uniq_text is a new variable that was never u
    +sed before, and noone else has access to.
    }
    
  2. or download this
    sub InitializeList {
      my @items; # no need to undef it
      for my $text ( qw( one two three four five six seven eight nine ten 
    +) )
    ...
    }
    
    my @res = InitializeList(); # get the items from that call