Language Basics Perl

#!/usr/bin/perl -w
use strict;
my $password = "foxtrot";
print "Enter the password: ";
my $guess = ;
chomp $guess;
if ($password ne $guess) {
    die "Go away, imposter!\n";
}