Help for this page

Select Code to Download


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