Sobes.tech
Senior

Kas yra defer? Ką išves sekantis kodas? ```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 } ```