Help for this page

Select Code to Download


  1. or download this
    foreach my $array (@array)
    {
        eval "$array->()";
    }
    
  2. or download this
    my %test_functions =
    (
    ...
    );
    
    $test_functions{$_}->() for qw/ test test2 test3 /;