programming-examples/perl/Statement/while data section.pl

20 lines
135 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
while (<DATA>) {
print;
}
__DATA__
Here
is
the
text!
while (<DATA>) {
print;
}
__END__
Here
is
the
text!