in reply to (bbfu) (AoA?) Re: how do I open each line of a text file into seperate arrays?
in thread how do I open each line of a text file into seperate arrays?

print "Yep.\n" if $lines[0][0] == 'foo';
I think you mean:
print "Yep.\n" if $lines[0][0] eq 'foo';

Just when you thought the updates were over...

buckaduck