Skip to content

Instantly share code, notes, and snippets.

@erica
Last active August 29, 2015 14:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erica/811977c22b5559d941cb to your computer and use it in GitHub Desktop.
Save erica/811977c22b5559d941cb to your computer and use it in GitHub Desktop.
let fname = "/tmp/scratch.txt"
let fptr = fopen(fname, "w")
if (fptr == nil) {
let localErrno = errno
println("Unable to open \(fname): \(strerror(localErrno))")
} else {
let text = "Hello World\n"
let bytesWritten = fwrite(text, UInt(sizeof(Byte)), strlen(text), fptr)
println("Wrote \(bytesWritten) bytes")
fclose(fptr)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment