Help for this page

Select Code to Download


  1. or download this
    my %replacehash = (
            TEMP1 => $flow->getExeName(),
            TEMP2 => $flow->getTempName(),
            TEMP3 => $flow->getData()->getNameType(),
    )
    
  2. or download this
    my %replacehash;
    @replacehash{map { "TEMP$_" } 1 .. 3} = (
    ...
            $flow->getTempName(),
            $flow->getData()->getNameType(),
    )