Sneaky Defers In Go
What do you think the output of the following code would be? package main import "fmt" func main() { input := "hello" TestDefer(&input) } func TestDefer(input *string) { defer fmt.Println(*input) *input = "world" fmt.Println(*input) } Given how defer-ed functions are executed just before the parent function exits, I expected the output to be world world But, on execution it actually prints world hello This is because the arguments are evaluated when the defer is encountered, and not when the deferred function is actually called. Effective Go even has a line specifically about this behavior (which I discovered later). ...