RosettaCodeData/Task/Input-loop/BASIC256/input-loop.basic

10 lines
130 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
f = freefile
open f, "test.txt"
while not eof(f)
linea$ = readline(f)
print linea$ # echo to the console
end while
close f
end