I am trying to implement a tree in Go.
type BinaryNode struct { left *BinaryNode right *BinaryNode data int } type BinaryTree struct { root *Bi