Explore >> Select a destination


You are here

jimlawless.net
| | masnun.com
7.9 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. [...]
| | mariocarrion.com
9.3 parsecs away

Travel
| | Let's continue learning about everything around Interface Types
| | fernandocorreia.dev
9.8 parsecs away

Travel
| | This is part 13 of my journey learning Golang. Strings in Go Strings represent a sequence of bytes. More specifically, a read-only slice of uint8 integers. ...
| | logr.cogley.info
55.3 parsecs away

Travel
| I usually use the static site generator called Hugo, but I am interested in this SSG called «elm-pages», which is a smart collection of elm scripts with sane defaults for site generation. ??