- or download this
while (<DATA>)
{
print $_;
...
__DATA__
Hello world
- or download this
my @emoticons = (':P', '*tongue*');
- or download this
open outFile, ">", "test.txt";
print outFile <<END;
This is test data for reading by the example code.
END
close outFile;