package chatpb import ( "go.wit.com/log" ) func ExampleChat() *Chats { conversation := NewChats() conversation.AddRegexComment("funny") /* gchat := conversation.AddRegexComment("funny") snip := new(CodeSnippet) snip.Filename = "log/snip1.txt" gchat.Snippets = append(gchat.Snippets, snip) */ conversation.AddUserComment("yes") conversation.AddRegexComment("I like astronomy") dump := conversation.FormatTEXT() log.Println(dump) return conversation }