What technologies are used in your projects?
Middle+
128
What technologies are used in your projects?
What part of the business was your team responsible for? What did it oversee?
package main import ( "fmt" ) type Foo interface { Foo() } type 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() } }