Properly use these strings.
This commit is contained in:
parent
8cc77b8dec
commit
8b233299c8
1 changed files with 2 additions and 2 deletions
|
@ -57,9 +57,9 @@ my $wantList = <STDIN>;
|
||||||
chomp $wantList;
|
chomp $wantList;
|
||||||
|
|
||||||
print "postal Address (. to end):\n";
|
print "postal Address (. to end):\n";
|
||||||
my $postal;
|
my $postal = "";
|
||||||
while (my $line = <STDIN>) {
|
while (my $line = <STDIN>) {
|
||||||
last if /^\s*\.\s*$/;
|
last if $line =~ /^\s*\.\s*$/;
|
||||||
$postal .= $line;
|
$postal .= $line;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue