Skip to content

Instantly share code, notes, and snippets.

@ijingo
Created November 18, 2016 08:35
Show Gist options
  • Save ijingo/8337553301f0de90b237d2a473c16886 to your computer and use it in GitHub Desktop.
Save ijingo/8337553301f0de90b237d2a473c16886 to your computer and use it in GitHub Desktop.
package shared
type Args struct {
A, B int
}
type Quotient struct {
Quo, Rem int
}
type Arith interface {
Multiply(args *Args, reply *int) error
Divide(args *Args, quo *Quotient) error
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment