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