I'm always looking for easy ways to visualize data from CLI so I built something I couldn't find an existing solution for.<p><pre><code> a := gree.NewNode("root")
a.NewChild("child1")
a.NewChild("child2").NewChild("grandchild1")
fmt.Println(a.Draw())
</code></pre>
Makes<p><pre><code> root
├── child1
└── child2
└── grandchild1
</code></pre>
Curious if others find it useful