Help for this page

Select Code to Download


  1. or download this
    return join '', map {
    $_->{type} eq 'static' ? 
    $_->{body} : 
    $self->execute($_)
    } @{$self->{BODY}};
    
  2. or download this
    my @bodies = @{$self->{BODY}};
    return join '', map {
    ...
    $_->{body} : 
    $self->execute($_)
    } @bodies;