Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
#!perl
# comparing two simple arrays
@one = ('a','e','c','d');
@two = ('a','b','c');
for ($i = 0; $i < ((@one > @two) ? @one : @two); $i++)
{
unless ($one[$i] eq $two[$i])
{
print "SLOT: $i \n V1: $one[$i]\n V2: $two[$i]\n";
}
}