Help for this page

Select Code to Download


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