Help for this page

Select Code to Download


  1. or download this
    use strict;
    use warnings;
    ...
        my ( $a, $b ) = @_;
        return List::Compare->new( $a, $b )->get_union;
    }
    
  2. or download this
    @a = a b c
    @b = b c d
    ...
    @a AND @b = bc
    
    @a OR @b = abcd