package main import ( "fmt" "image" ) func main() { point1 := image.Point{10, 20} point2 := image.Point{5, 10} result := point1.Sub(point2) fmt.Println(result) }In this example, we have two Point values "point1" and "point2". We use the Sub() function to find the difference between the two points and store the result in the "result" variable. The output will be {5 10}. The package library used for this function is "image", which is a package that provides basic image manipulation functions.