CLOSE int-exp (Disk microbees only).

CLOSEs the file referred to by int-exp. Integer is one of 2,3,6,7.

Program Example.

00100 CLS
00110 PRINT "Before we create the file, the directory is:"
00120 DIR
00130 OUTL#6
00140 OPEN "o",6,"temp": REM Stream six will send info to file
00150 FOR I = 1 TO 10
00160 LPRINT I
00170 NEXT I
00180 CLOSE 6 : REM Close the file.
00190 PRINT:PRINT "After we have created the file, the directory is:"
00200 DIR
00210 KILL "temp" : REM Wipe the file from disk.
00220 END

Try it

See also OPEN.