openfile.bmx 230 B

123456789101112
  1. ' openfile.bmx
  2. ' the following prints the contents of this source file
  3. file=openfile("openfile.bmx")
  4. if not file runtimeerror "could not open file openfile.bmx"
  5. while not eof(file)
  6. print readline(file)
  7. wend
  8. closestream file