in reply to List Compare

Here's a Lispy version (which modifies the arrays):
my @a=qw(a b c d e f); my @b=qw(a b c); sub head_eq(\@\@) { my ($long, $short) = @_; @$short == 0 or (@$long and shift @$long eq shift @$short and &hea +d_eq) } print "Equal!\n" if head_eq(@a, @b);

Caution: Contents may have been coded under pressure.