I want to create an AVL tree in tcl. I read that in tcl we cannot have structures that contain references of themselves like in C.
struct tree{
tree *treelink;
}
I want to be able to create the trees without using OTcl. Is it possible and how?