Skip to content

Instantly share code, notes, and snippets.

@vladimirvivien
Created September 14, 2017 16:26
Show Gist options
  • Save vladimirvivien/074ef5832d2e11970f5499b2a62cdaf7 to your computer and use it in GitHub Desktop.
Save vladimirvivien/074ef5832d2e11970f5499b2a62cdaf7 to your computer and use it in GitHub Desktop.
package main
import (
"io/ioutil"
...
)
func main() {
bytes, err := ioutil.ReadFile("./planets.txt")
if err != nil {
fmt.Println(err)
os.Exit(1)
}
fmt.Printf("%s", bytes)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment