/Tree

A simple lua module inspired by bash's tree command

Primary LanguageLua

Tree

A simple lua module inspired by bash's tree command.

Example

local Tree = Tree({
	{"Fruit", {
		{"Strawberry", {
			{"Seed"},
			{"Seed"}
		}}
	}},
	{"Vegetable", {
		{"WTF"}
	}}
})

print(Tree)

Output

├── Fruit
│	└── Strawberry
│	 	├── Seed
│	 	└── Seed
└── Vegetable
 	└── WTF