##
Feature "~~" is not supported by Perl 5.10.0 at ...
####
use feature qw / say /;
@a = (1, 17, 4);
say "first match succeeds" if (@a ~~ 17);
say "second match fails" unless ((1, 17, 4) ~~ 17);
####
first match succeeds
second match fails