- or download this
my $text = qq~
First line
Second line
~;
- or download this
print <<END
Hello there!
This is a test!
END
- or download this
print <<END
Hello there!
...
END
my $i;
- or download this
syntax error at text_delim.pl line 11, near "my "
Global symbol "$i" requires explicit package name at text_delim.pl lin
+e 11.
- or download this
print <<END
Hello there!
...
END
;
my $i;
- or download this
print <<END;
Hello there!
...
END
my $i;