readstream.bmx 347 B

123456789101112131415
  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. SuperStrict
  5. Local in:TStream = ReadStream("http::blitzmax.org")
  6. If Not in RuntimeError "Failed to open a ReadStream to file http::www.blitzbasic.com"
  7. While Not Eof(in)
  8. Print ReadLine(in)
  9. Wend
  10. CloseStream in