programming-examples/perl/Array/A program that reads data into an array and writes the array.pl

5 lines
64 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
#!/usr/local/bin/perl
@array = <STDIN>;
print (@array);