Skip to content

Instantly share code, notes, and snippets.

@chiiph
Created December 26, 2012 20:14
Embed
What would you like to do?
Another defer example
func b() {
for i := 0; i < 4; i++ {
defer fmt.Print(i)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment