Skip to content

Instantly share code, notes, and snippets.

@Kairi
Created September 16, 2014 06:16
Show Gist options
  • Select an option

  • Save Kairi/e93b6807e1a874e2d61c to your computer and use it in GitHub Desktop.

Select an option

Save Kairi/e93b6807e1a874e2d61c to your computer and use it in GitHub Desktop.
wirte file in golang using "ioutil"
package main
import (
"io/ioutil"
"log"
)
func main() {
message := []byte("Hello World\n")
err := ioutil.WriteFile("./file_name.txt", message, 0666)
if err != nil {
log.Fatal(err)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment