11 lines
147 B
Text
11 lines
147 B
Text
f = FREEFILE
|
|
filename$ = "file.txt"
|
|
|
|
OPEN filename$ FOR INPUT AS #f
|
|
|
|
WHILE NOT EOF(f)
|
|
LINE INPUT #f, linea$
|
|
PRINT linea$
|
|
WEND
|
|
CLOSE #f
|
|
END
|