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

15 lines
88 B
Go

package one
type direction int
const (
N direction = iota
NE
E
SE
S
SW
W
NW
)