Skip to content

Instantly share code, notes, and snippets.

@amstee
Last active January 15, 2017 00:09
Show Gist options
  • Select an option

  • Save amstee/e11cef0414c70eb77c319805cdc868f2 to your computer and use it in GitHub Desktop.

Select an option

Save amstee/e11cef0414c70eb77c319805cdc868f2 to your computer and use it in GitHub Desktop.
An answer for the exercise stringer
import "fmt"
type IPAddr [4]byte
func (this IPAddr) String() string {
return fmt.Sprintf("%d.%d.%d.%d", this[0], this[1], this[2], this[3])
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment