The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

use Set::Object;
print "1..2\n";

my @a = qw(One Two Three);     
my @b = qw(Four Five Six);
 
my $ssa = Set::Object->new(@a);
my $ssb = Set::Object->new(@b);
 
print "not " unless $ssa;
print "ok 1\n";

my $is = $ssa->intersection($ssb);
print "not " if $is->size;
print "ok 2 - $is\n";