Close

From Mesham
Revision as of 14:30, 15 April 2013 by Polas (talk | contribs)
Jump to navigationJump to search

Overview

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

  • Pass: A File handle
  • Returns: Nothing

Example

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

Since: Version 1.0