2022-01-06 18:55:55 +00:00
|
|
|
/*
|
|
|
|
Package tree is a subset of a class of languages called two dimensional
|
|
|
|
languages.
|
|
|
|
|
|
|
|
One dimensional languages assume a one dimensional array of bits with a single
|
|
|
|
read head moving in order.
|
|
|
|
|
|
|
|
Two dimensional languages break those assumptions. There may be multiple read
|
|
|
|
heads that can move not just on the x axis but on the y axis as well.
|
|
|
|
|
|
|
|
Tree Notation is a middle ground that utilitizes ideas from the two dimensional
|
|
|
|
language world using present day technology.
|
|
|
|
*/
|
2022-01-06 20:00:37 +00:00
|
|
|
package tree // import "source.toby3d.me/toby3d/tree"
|