Skip to content

Instantly share code, notes, and snippets.

@cep21
Last active November 2, 2016 18:11
Show Gist options
  • Save cep21/1fd539f89622716fcad9fe85abbfda55 to your computer and use it in GitHub Desktop.
Save cep21/1fd539f89622716fcad9fe85abbfda55 to your computer and use it in GitHub Desktop.
package store
type Totaller interface {
Subtotal() float64
}
type Store struct {
}
func (s *Store) RenderPage(t Totaller) {
// Do thing with t
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment