- or download this
function(
aa => otherfunction(),
bb => anotherone()
);
- or download this
function(
aa => otherfunction(),
bb => scalar( anotherone() )
);
- or download this
function(
aa => otherfunction(),
bb => anotherone() || ''
);
- or download this
my $another = anotherone();
<code>
...
aa => otherfunction(),
bb => $anotherone
);