Help for this page

Select Code to Download


  1. or download this
    if( grep $question eq $_, 'a', 'b' 'c' ) {
        # ...
    }
    
  2. or download this
    my %questions;
    undef @questions{ 'a', 'b', 'c' };
    ...
    if( exists $questions{ $question } ) {
        # ...
    }