Help for this page

Select Code to Download


  1. or download this
    sub is_valid_list {
        my $text = shift;
    
  2. or download this
        my @langs = grep {defined} split /[\s,]+/, $text;
  3. or download this
        ! grep { ! exists $validLanguages{$_} } @langs;
    }