programming-examples/perl/Array/A program that reads data into an array and writes the array.pl
2019-11-15 12:59:38 +01:00

5 lines
64 B
Perl

#!/usr/local/bin/perl
@array = <STDIN>;
print (@array);