http://qs321.pair.com?node_id=775476


in reply to conditional syntax options

If you want to check against a lot of constants, you can grep:

if(not grep {$string eq $_} qw{ X Y })

You can extend the list with X and Y as much as you like. Using it on two values only is overkill.