7 lines
110 B
Text
7 lines
110 B
Text
f = freefile
|
|
open f, "input.txt"
|
|
while not eof(f)
|
|
linea$ = readline(f)
|
|
print linea$
|
|
end while
|
|
close f
|