Help for this page

Select Code to Download


  1. or download this
    use 5.010;
    
    ...
    if ($var ~~ @set) {
        say "yes";
    }
    
  2. or download this
    my %set = map { $_ => 1 } qw/banana plum apple strawberry pear/;
    if (exists $set{$var}) {
        say "yes";
    }