in reply to Smart match operator support in Strawberry perl 5.10.0.1

I'm new to the smart match operator, but I took a stab at it. Does this help?

#!/usr/bin/perl use strict; use warnings; use 5.010; my @a = (1, 17, 4); say "first match suceeds" if (@a ~~ 17); say "second match fails" unless ([1, 17, 4] ~~ 17);