pergi divmod

func divMod(x,y int) (int, int) {
  return x / y, x % y
}
Mackerel