aoc2024/day-04/internal/two/direction.go

11 lines
76 B
Go

package two
type direction int
const (
NW direction = iota
NE
SE
SW
)