mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-12-17 04:07:48 +00:00
11 lines
104 B
Go
11 lines
104 B
Go
package one
|
|
|
|
type point struct {
|
|
x int
|
|
y int
|
|
}
|
|
|
|
func newPoint(x, y int) point {
|
|
return point{x, y}
|
|
}
|