programming-examples/perl/Statement/while data section.pl
2019-11-15 12:59:38 +01:00

20 lines
135 B
Perl

while (<DATA>) {
print;
}
__DATA__
Here
is
the
text!
while (<DATA>) {
print;
}
__END__
Here
is
the
text!