Explore >> Select a destination


You are here

jimlawless.net
| | mariocarrion.com
9.5 parsecs away

Travel
| | Let's continue learning about everything around Interface Types
| | golangbot.com
13.0 parsecs away

Travel
| | Arrays are collection of elements of the same type. A slice in Go is a convenient wrapper on top of array.
| | masnun.com
9.1 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. [...]
| | markphelps.me
95.0 parsecs away

Travel
| 4 Tips for Testing Your API Client