The following will cause errors with the proto parser we are using: ``` // example.proto syntax = "proto3"; package pokemon.example; ``` results in ``` go run main.go convert example.proto --overwrite error: 1:16: expected ';', found '.' exit status 1 ``` but the following works fine: ``` // example.proto syntax = "proto3"; package example; ``` I have raised an issue about this - https://github.com/emicklei/proto/issues/102