Protobuf Practice
Edit the schema, wait for the descriptor checks, and continue when everything passes.
Progress
Exercise 4: Repeated Fields
4. Repeated Fields
Context
Use `repeated` for lists. Repeated field names are usually plural, because generated code exposes them as collections.
syntax = "proto3"; package practice; message BlogPost { string id = 1; string title = 2; string tag = 3; }
EVALUATION_CHECKS
Exercise Incomplete
Please satisfy all checks above