Skip to content

Instantly share code, notes, and snippets.

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