Skip to content

Instantly share code, notes, and snippets.

@dvinciguerra
Created March 22, 2011 18:19
Show Gist options
  • Save dvinciguerra/881728 to your computer and use it in GitHub Desktop.
Save dvinciguerra/881728 to your computer and use it in GitHub Desktop.
my @array_a = (1 .. 10);
my @array_b = ( 9 .. 15);
foreach my $item (@array_a) {
if(grep { $_ eq $item} @array_b) {
say $item ."Yes baby!!!";
} else {
say $item ." No!!!\n";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment