type calc struct {}func (*calc) getSum(n1, n2 int) int { return n1 + n2}c := calc{}var sum = c.getSum(5, 3)//sum is 8fmt.Println("sum =", sum)