APPENDIX
BASIC
Statements
This appendix explains the syntax
of
all the VIC
20
BASIC statements.
They are presented in alphabetical order and include
both
internal functions
and
I/O
commands.
CLOSE
The CLOSE statement closes a logical file.
Format:
CLOSE If
The CLOSE statement closes logical file
If.
Every file should be closed
after all file accesses have been completed. An open logical file may be closed
only once. The particular operations performed in response to a CLOSE
statement depend on the open file's physical device and the type
of
access
that occurred.
Example:
CLOSE
1
CLOSE
14
Close logical file 1
Close logical file 14
341