Skip to content

Instantly share code, notes, and snippets.

@wjessop
Created February 2, 2015 18:54
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 wjessop/61c9fa274537f70853df to your computer and use it in GitHub Desktop.
Save wjessop/61c9fa274537f70853df to your computer and use it in GitHub Desktop.
// Print the formatted error and exit.
func Fatalf(format string, a ...interface{}) {
fmt.Fprintf(os.Stderr, format, a...)
os.Exit(1)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment