RosettaCodeData/Task/Read-entire-file/BASIC256/read-entire-file.basic
2023-07-01 13:44:08 -04:00

7 lines
110 B
Text

f = freefile
open f, "input.txt"
while not eof(f)
linea$ = readline(f)
print linea$
end while
close f