mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 14:20:48 +00:00
10 lines
97 B
Go
10 lines
97 B
Go
package point
|
|
|
|
type Point struct {
|
|
X, Y int
|
|
}
|
|
|
|
func New(x, y int) Point {
|
|
return Point{x, y}
|
|
}
|