5 lines
90 B
Perl
5 lines
90 B
Perl
|
while (chomp($input = <>)) {
|
||
|
|
||
|
print "You typed: $input\n" unless $input eq 'L';
|
||
|
|
||
|
}
|