9 lines
99 B
Perl
9 lines
99 B
Perl
#!/usr/bin/perl -w
|
|
|
|
use strict;
|
|
|
|
while (<STDIN>) {
|
|
print "You entered: ";
|
|
print;
|
|
}
|