aoc2024/day-20/internal/point/point.go

10 lines
97 B
Go
Raw Permalink Normal View History

2024-12-20 20:48:13 +00:00
package point
type Point struct {
X, Y int
}
func New(x, y int) Point {
return Point{x, y}
}