Help for this page

Select Code to Download


  1. or download this
    use ProjectA;
    my $project = 'ProjectA';
    my %ThingsToDo = (firstTask => 'prepare');
    
  2. or download this
    $project->$ThingsToDo{firstTask}();
    
  3. or download this
    my $temp = $ThingsToDo{firstTask};
    $project->$temp();