createfile.bmx 141 B

1234567
  1. ' createfile.bmx
  2. SuperStrict
  3. Local success:Int = CreateFile("myfile")
  4. If Not success Then
  5. RuntimeError "error creating file"
  6. End If