Help for this page
say "Found it" if $hash{$key};
say "Found it" if exists $hash{$key};
my %hash; open my $INPUT, "<", $file_in or die "Cannot open $file_in $!"; # the +die "..." part is not needed if you use autodie. ... } close $INPUT; # You can use %hash for lookup now