my $command = sub { my @returnstring = $d->checklist( text => $text, list => [ @list ] ); return \@returnstring; }; my $some_ref = &$command; #### my $command = sub { my $returnstring = \($d->checklist( text => $text, list => [ @list ] )); return $returnstring; }; my $some_ref = &$command; #### my @returnstring; my $command = sub { @returnstring = $d->checklist( text => $text, list => [ @list ] ); };