programming-examples/perl/Statement/Using while statement to read from keyboard.pl
2019-11-15 12:59:38 +01:00

4 lines
48 B
Perl

while ($temp = <STDIN>) {
print $temp;
}