Sign in
apache
/
nuttx-apps
/
ec4d7a19f73ceca2a87fd54fc90454ff892c6beb
/
.
/
examples
/
bastest
/
tests
/
test33.bas
blob: 56c29a77b47d1a63744076531105efdf9af40357 [
file
] [
log
] [
blame
]
open
"/tmp/test.out"
for
binary
as
1
put
1
,
1
,
"xy"
put
1
,
3
,
"z!"
put
1
,
10
,
1
/
3
put
1
,
20
,
9999
close
1
open
"/tmp/test.out"
for
binary
as
1
s$
=
" "
get
1
,
1
,
s$
get
1
,
10
,
x
get
1
,
20
,
n
%
close
print
s$
print
x
print
n
%
kill
"/tmp/test.out"