149 10 for i = 1 to 100000 15 write "hello" 17 next i 20 open "test.out" for output as #1 30 print #1,"This is line 1." 40 print #1, "This is line 2." 50 close #1 60 open "test.out" for input as #1 70 line input #1, a$ 80 line input #1, b$ 90 print "Read from file:" 100 print ">"; a$ 110 print ">"; b$ 120 close #1 . 0