TreeLang/readme.md

17 lines
303 B
Markdown
Raw Permalink Normal View History

2022-10-19 02:21:42 +00:00
# TreeLang
TreeLang is an half esolang thingy with trees
## Examples
```TreeLang
# assigning to treeThing
treeThing <- 93 { # root node
"childNode1", # child node 1: the legacy of the root
1942 { # child node with children
"AAA", # child of child
"AUGH"
}
}
```