5 lines
88 B
Text
5 lines
88 B
Text
DIM f AS STRING
|
|
OPEN "file.txt" FOR BINARY AS 1
|
|
f = SPACE$(LOF(1))
|
|
GET #1, 1, f
|
|
CLOSE 1
|