Help for this page

Select Code to Download


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