Help for this page

Select Code to Download


  1. or download this
    if ($response ~~ ['yes', 'Yes', 'YES', 'y'])
    
  2. or download this
    if (lc $response ~~ ['yes', 'y'])
    
  3. or download this
    if (lc $response ~~ ['yes', 'y'])
    
  4. or download this
    if (lc $response ~~ [qw(yes y)])