close()

Close a file stream, If no stream is specified, all file streams are closed.

Syntax:
close stream
close

stream is a file previously opened by the open command.

Example:

print "Hello, sdlBasic" to the file "temp"
open "temp" for output as 1
Print 1, "Hello, sdlBasic"
close #1