Dinamai nilai pengembalian di golang

func split(sum int) (x, y int) {
  x = sum * 4 / 9
  y = sum - x
  return
}
Harendra