readstream.bmx 320 B

12345678910111213
  1. ' readstream.bmx
  2. ' opens a read stream to the blitzbasic.com website and
  3. ' dumps the homepage to the console using readline and print
  4. in=ReadStream("http::blitzbasic.com")
  5. If Not in RuntimeError "Failed to open a ReadStream to file http::www.blitzbasic.com"
  6. While Not Eof(in)
  7. Print ReadLine(in)
  8. Wend
  9. CloseStream in