Help for this page

Select Code to Download


  1. or download this
    my $goal = "what is to be accomplished?";
    my @tasks = qw( all the necessary steps to get there );
    ...
    {
        do work(@tasks);
    }
    
  2. or download this
    my $goal = "what is to be accomplished?";
    my @tasks = qw( all the necessary steps to get there );
    
    do work(@tasks) if ( want_to_accomplish($goal) );