6 lines
116 B
Text
6 lines
116 B
Text
|
|
open DefaultDir$ + "/public/test.txt" for binary as #f
|
||
|
|
fileLen = LOF(#f)
|
||
|
|
a$ = input$(#f, fileLen)
|
||
|
|
print a$
|
||
|
|
close #f
|