Created
October 12, 2016 20:47
-
-
Save mlowicki/a9fd097bb1447ca5a95239c1309a5798 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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