programming-examples/perl/Statement/Using while statement to read from keyboard.pl

4 lines
48 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
while ($temp = <STDIN>) {
print $temp;
}