There is an example of code snippet that have different result of `go run` and gophernotes: ```go type Direction int const ( North Direction = iota East South West ) func (d Direction) String() string { return [...]string{"North", "East", "South", "West"}[d] } func main() { fmt.Print(East) } ``` `gophernotes` example:  `go run` example: 