For an immutable tree, can't you just do `data cla...
# announcements
s
For an immutable tree, can't you just do
data class Tree<V>(val value: V, val children: List<Tree<V>>)
?