How can I use __DATA__ twice?
#!/usr/local/bin/perl
use warnings;
use 5.012;
while ( <DATA> ) {
print;
}
while ( <DATA> ) {
chomp if $. == 1;
print scalar reverse;
print "\n" if eof;
}
__DATA__
one
two
three
four
five
six
|
How can I use
|
||||
|
|
See also perldoc seek. |
||||
|
|
|
You can use the Data::Handle module to do the |
|||
|
|
Use
|
|||||
|