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() } }
Senior
127
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() } }
Por que parte do negócio a sua equipa era responsável? Por que ela era responsável?
Que tecnologias são usadas nos projetos?