Help for this page

Select Code to Download


  1. or download this
    <P>And here is something from another file:
    @INCLUDE other_file.txt
    We now return to your regularly scheduled text.
    </P>
    
  2. or download this
    use File::Copy;
    
    ...
    print STDOUT "<P>And here is something from another file:\n";
    copy('other_file.txt', \*STDOUT) or print STDOUT "[Oops: $!]\n";
    print STDOUT "We now return you to your regularly scheduled text.\n";