in main.go [40:44]
func myPipeline(scope beam.Scope, input_text string) beam.PCollection {
elements := beam.Create(scope, "hello", "world!", input_text)
elements = beam.ParDo(scope, strings.Title, elements)
return beam.ParDo(scope, logAndEmit, elements)
}