Help for this page

Select Code to Download


  1. or download this
    my $foo = "example";
    foreach my $bar ($foo) {
      # Right now $foo and $bar are the same
    }
    
  2. or download this
    foreach my $var_name (qw(foo bar baz)) {
      $hash{$var_name} = eval "\$$var_name";
    }