RosettaCodeData/Task/Input-loop/Liberty-BASIC/input-loop.basic

10 lines
152 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
filedialog "Open","*.txt",file$
if file$="" then end
open file$ for input as #f
while not(eof(#f))
line input #f, t$
print t$
wend
close #f
end