RosettaCodeData/Task/Input-loop/BASIC256/input-loop.basic
2023-07-01 13:44:08 -04:00

9 lines
130 B
Text

f = freefile
open f, "test.txt"
while not eof(f)
linea$ = readline(f)
print linea$ # echo to the console
end while
close f
end