Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save shockalotti/97151c32056592ce35e1 to your computer and use it in GitHub Desktop.
Save shockalotti/97151c32056592ce35e1 to your computer and use it in GitHub Desktop.
Go Golang - Defer, Panic function example
package main
import "fmt"
func main() {
defer func() {
str := recover()
fmt.Println(str)
}()
panic("PANIC")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment