Skip to content

Instantly share code, notes, and snippets.

@erica
Created July 29, 2014 17:17
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/864138585c7ea43ed20b to your computer and use it in GitHub Desktop.
Save erica/864138585c7ea43ed20b to your computer and use it in GitHub Desktop.
let fd = open("/tmp/scratch.txt", O_WRONLY|O_CREAT, 0o666)
if fd < 0 {
perror("could not open /tmp/scratch.txt")
} else {
let text = "Hello World\n"
write(fd, text, strlen(text))
close(fd)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment