6 lines
149 B
Text
6 lines
149 B
Text
file% = OPENIN("input.txt")
|
|
strvar$ = ""
|
|
WHILE NOT EOF#file%
|
|
strvar$ += CHR$(BGET#file%)
|
|
ENDWHILE
|
|
CLOSE #file%
|