Sobes.tech
Senior

Cos'è defer? Cosa stamperà il seguente codice? ```go type X struct { V int } func (x X) S() { fmt.Println(x.V) } func main() { x := X{123} defer x.S() x.V = 456 } ```