Explore >> Select a destination


You are here

golangbot.com
| | jimlawless.net
19.4 parsecs away

Travel
| |
| | masnun.com
12.2 parsecs away

Travel
| | In Go or Golang, declaring an interface is pretty simple and easy. type Printer interface { Print(string) } We just defined an interface named Printerthat required an implementer to have a method named Printwhich takes a stringparameter and returns nothing. Interfaces are implemented implicitly in Go. Any type that has the Print(string)method implements the interface. [...]
| | jordanorelli.com
18.7 parsecs away

Travel
| | How to use interfaces in Go Before I started programming Go, I was doing most of my work with Python. As a Python programmer, I found that learning to use interfaces in Go was extremely difficult....
| | labs.steren.fr
43.2 parsecs away

Travel
|