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

9 lines
42 B
Go

package two
const (
N = iota
E
S
W
)