home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / d / doslogo.zip / LOGOHLP.ZIP / CLOSE.HLP < prev    next >
Text File  |  1990-06-11  |  349b  |  12 lines

  1. close  -- Command, one input.
  2.      The input must be a file descriptor.  The file is closed.   This  must
  3.      be done when you've finished reading or writing the file.
  4.  
  5.      Sample program:
  6.  
  7.      make "fd openwrite "outfile
  8.      fileprint :fd "Hello.
  9.      close :fd
  10.  
  11.      This will create a file named outfile containing the word Hello.
  12.