in reply to Re: Re: Re: Hash slices ?in thread Hash slices ?
sub Match{foreach (@keys) {return 1 if exists $hash{$_};}return 0} if ( Match ) { print "yep\n"; } else { print "nope\n"; }; [download]