Méthodes Golang pour le type primitif

package mainimport "fmt"type Int intfunc (i Int) Add(j Int) Int {  return i + j}func main() {  i := Int(5)  j := Int(6)  fmt.Println(i.Add(j))  fmt.Println(i.Add(j) + 12)}
praneel