-
-
Save tristanwietsma/6594638 to your computer and use it in GitHub Desktop.
Deferred closure example with a cycle
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, y int) { | |
fmt.Println("The deferred A-call", x, y) | |
} | |
func B() int { | |
theAnswer := 42 | |
for y:=1; y < 10; y++ { | |
defer func() { | |
fmt.Println("The deferred scope", theAnswer, y) | |
A(theAnswer, y) | |
}() | |
fmt.Println("The exit inner loop scope", theAnswer, y) | |
} | |
fmt.Println("The exit function scope", 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