Close
From Mesham
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);
The close(f) function will close the file represented by handle f
#include <io> var f:=open("myfile.txt","r"); close(f);