writefile.bmx 193 B

12345678910
  1. ' writefile.bmx
  2. SuperStrict
  3. Local file:TStream = WriteFile("test.txt")
  4. If Not file Then RuntimeError "failed to open test.txt file"
  5. WriteLine file,"hello world"
  6. CloseStream file