Close

From Mesham
Revision as of 13:06, 13 January 2013 by Polas (talk | contribs) (Created page with '== Overview == The close(f) function will close the file represented by handle ''f'' * '''Pass:''' A file handle of type File * '''Returns:''' Nothing == Example == #inc…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

Overview

The close(f) function will close the file represented by handle f

  • Pass: A file handle of type File
  • Returns: Nothing

Example

#include <io>
var f:=open("myfile.txt","r");
close(f);