Let us first create a simple .proto file person.proto
package Protocol;
message Person {
required string firstName = 1;
required string lastName = 2;
optional int32 age = 3;
}
After saving we can now create the Haskell files which we can use in our project by running
...