WRITE
WRITE #fileN, var1 [, var2, … , varN]
Store variables var1
to varN
to a file as
binary data. Variables can be numbers, strings and arrays.
See READ for reading variables from a file.
Example
12.3
a = "test"
b = 1,2,3,4]
c = [
' Write variables to file
open "text.bin" for output as #1
write #1, a, b, c
close #1
' Read variables from file
open "text.bin" for input as #1
read #1, a, b, c
close #1
print a
print b
print c
Code samples using WRITE
File
ACCESS
BGETC
BLOAD
BPUTC
BSAVE
CHDIR
CHMOD
CLOSE
COPY
DIRWALK
EOF
EXIST
FILES
FREEFILE
INPUT
INPUT
KILL
LOCK
LOF
MKDIR
OPEN
READ
RENAME
RMDIR
SEEK
SEEK
TLOAD
TSAVE
WRITE
If there is insufficient information on this page and you wish learn more about WRITE,
please send an email to smallbasic@gmail.com. You can help to improve information about
WRITE by submitting a pull request,
click View Source for details. Note, an offline language reference text file is also available - see the Download section.