Close
From Mesham
Jump to navigationJump to searchOverview
The close(f) function will close the file represented by handle f
- Pass: A File handle
- Returns: Nothing
Example
#include <io>
var f:=open("myfile.txt","r");
close(f);
Since: Version 1.0
The close(f) function will close the file represented by handle f
#include <io>
var f:=open("myfile.txt","r");
close(f);
Since: Version 1.0