- or download this
my @choices = [qw/one two three four/];
my $me = $mw->MatchEntry(-choices => @choices);
- or download this
my @choices = (qw/one two three four/);
my $me = $mw->MatchEntry(-choices => \@choices);
- or download this
my $choices = [qw/one two three four/];
my $me = $mw->MatchEntry(-choices => \@$choices);