Skip to content

Instantly share code, notes, and snippets.

@cep21
Created November 2, 2016 18:13
Show Gist options
  • Save cep21/eb1b4dbb42479870327cdea92e377d93 to your computer and use it in GitHub Desktop.
Save cep21/eb1b4dbb42479870327cdea92e377d93 to your computer and use it in GitHub Desktop.
package news
type Totaller interface {
Subtotal() float64
}
type NewsfeedRenderable struct {}
func (n *NewsfeedRenderable) RenderPage(t Totaller) {
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment