Help for this page

Select Code to Download


  1. or download this
    my @array = ("1","Option 1","2","Option 2","3","Option 3","4","Option 
    +4");
    my @quoted = map { "'$_'" } @array;
    
  2. or download this
    sub make_menu_items {
        my $items = shift;
    ...
        }
        return \@quoted;
    }