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

10 lines
48 B
Go

package two
const (
N = iota
E
S
W
None
)