file output #

ファイルストリームに一行分書き込む。

書式:
file output # stream, expression {,...}

stream is a file previously opened by the open command.
You can still use old command syntax print #

Example:
' open a text file
open "myfile.txt" for output as 1

' write some text
file output  #1, "Line1" 
file output  #1, "Line", "2" 
file output  #1, "Line", (2+4)/2 

' close the file
close( 1 )

参照: file input #