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