package comment type Comment struct { value string } func newComment(val string) Comment { return Comment { value: val } }