RosettaCodeData/Task/Read-entire-file/BASIC256/read-entire-file.basic

8 lines
110 B
Text
Raw Permalink Normal View History

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