mirror of
https://github.com/onyx-and-iris/aoc2024.git
synced 2025-01-09 06:10:47 +00:00
7 lines
51 B
Go
7 lines
51 B
Go
package point
|
|
|
|
type Point struct {
|
|
X int
|
|
Y int
|
|
}
|