Skip to content

Instantly share code, notes, and snippets.

@mlowicki
Created October 12, 2016 20:40
Show Gist options
  • Save mlowicki/38bdb4dddc431a577171b56b79675480 to your computer and use it in GitHub Desktop.
Save mlowicki/38bdb4dddc431a577171b56b79675480 to your computer and use it in GitHub Desktop.
package main
import "fmt"
func f() {
fmt.Println("1")
defer func() {
fmt.Println("Inside deferred function")
}()
fmt.Println("2")
panic("boom!")
fmt.Println("3")
}
func main() {
f()
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment