in reply to IF and some conditions
my %hash = map {$_ => undef} qw(7 5 3); print "ok" if exists $hash{$test}; [download]
If you want a set, then use a set.
use Set::Object; my $set = set(qw(7 5 3)); print "ok" if $set.includes($test); [download]
This module is called plain "Set" in Perl 6.
$h=$ENV{HOME};my@q=split/\n\n/,`cat $h/.quotes`;$s="$h/." ."signature";$t=`cat $s`;print$t,"\n",$q[rand($#q)],"\n"; [download]