Created
September 16, 2013 17:23
-
-
Save tristanwietsma/6583700 to your computer and use it in GitHub Desktop.
Deferred closure example $ go run deferClosure.go The deferred scope 42
The deferred A-call 42
Back in the main method 42
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 A(x int) { | |
fmt.Println("The deferred A-call", x) | |
} | |
func B() int { | |
theAnswer := 42 | |
defer func() { | |
fmt.Println("The deferred scope", theAnswer) | |
A(theAnswer) | |
}() | |
return theAnswer | |
} | |
func main() { | |
fmt.Println("Back in the main method", B()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment