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

10 lines
52 B
Go

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