Sobes.tech
Junior — Senior

What output will program №73 produce

livecode

Task condition

Determine what text will be printed to the console when the following Go code is run:

type X struct {
    V int
}

func (x * X) S(){
    fmt.Println(x.V)
        }
main()        
x := x{123}
defer x.S()
x.V = 456