Help for this page

Select Code to Download


  1. or download this
    package Beginning;
    use Fcntl;
    ...
            print $_  @_;
            print $_ $buf;
    }
    
  2. or download this
    tie *FH, "Beginning";
    open(FH, "Hello");  # This will actually be read/write
    print FH "Look ma, I'm first", scalar(localtime), "\n";
    close(FH);