ketree 0.4.4

A tree representing a symbolic expression that can be created with Ketos.
Documentation

Ketree

This is a small library that allows for the creation of trees that represent symbolic expressions using Ketos.

Building a Tree

Add the following to Cargo.toml:

[depenencies]
ketree = "0.4.4"

Then, to the crate root, add:

extern crate ketree;

You will then need to add Ketos to your project and write a struct that implements ModuleLoader. This struct can then be passed to an instance of TreeBuilder to create a tree. Check tests for an example.