RosettaCodeData/Task/Input-loop/Liberty-BASIC/input-loop.liberty
Ingy döt Net db842d013d A-M baby
2013-04-10 21:29:02 -07:00

9 lines
152 B
Text

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