So I'll start of by saying I'm not very familiar with Perl. I have a project that I've been handed at work that requires quite a bit of Perl work. Most of it makes sense but I'm stuck on a very simple issue.
I've simplified my code for example purposes. If I can get this to work I can code the rest of the project no problem, but for some reason I can't seem to get something as simple as the following to work for me:
#!/usr/local/bin/perl
@names = ('Harry','Larry','Moe');
foreach $name (@names){
if($name == 'Harry'){
print $name;
}
}
Any help is greatly appreciated!
Edit: fyi the output of the above is the following:
HarryLarryMoe