7 lines
97 B
Text
7 lines
97 B
Text
|
|
open "\testFile.txt" for input as #f
|
||
|
|
while not(eof(#f))
|
||
|
|
line input #f, a$
|
||
|
|
print a$
|
||
|
|
wend
|
||
|
|
close #f
|