I am looking for the correct syntax of doing the following (in Perl, Shell or Ruby):
# variable to access the data lines appended as a file
END_OF_SCRIPT_MARKER
raw data starts here
and it continues.
Perl does this with __DATA__
:
#!/usr/bin/perl
use strict;
use warnings;
while(<DATA>)
{
print;
}
__DATA__
Text to print
goes here
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With