Skip to content

Instantly share code, notes, and snippets.

@Ovinatter
Created December 8, 2014 06:00
Show Gist options
  • Save Ovinatter/906de00aa4a0ebc64037 to your computer and use it in GitHub Desktop.
Save Ovinatter/906de00aa4a0ebc64037 to your computer and use it in GitHub Desktop.
Goでファイルを読み込む
// ファイルの読み込み
rf, err := ioutil.ReadFile("ファイル名")
if err != nil {
log.Fatal(err)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment