Sobes.tech

Golang

pacote principal import ( "fmt" ) tipo Foo interface { Foo() } tipo Bar struct { Message string } func (b Bar) Foo() { fmt.Println(b.Message) } func main() { var b *Bar var f Foo f = b if f != nil { f.Foo() } }

127

Por que parte do negócio a sua equipa era responsável? Por que ela era responsável?

127
/2