##
function(
aa => otherfunction(),
bb => scalar( anotherone() )
);
####
function(
aa => otherfunction(),
bb => anotherone() || ''
);
####
my $another = anotherone();
function(
aa => otherfunction(),
bb => $anotherone
);