Help for this page

Select Code to Download


  1. or download this
    my %workflows = (
      'workflow1' => [ "first step", "second step", "third step" ],
      'workflow2' => [ "first step", "second step", "third step" ],
    );
    
  2. or download this
    print "Workflow1 is:\n" . join("\n", @%{$workflows{'workflow1'}})."\n"
    +;