tree-mumu 0.1.0-rc.2

Creates Linux `tree`-style renderings of MuMu values
Documentation
1
2
3
4
5
6
7
8
9
10
11
// src/register/mod.rs
//
// Public registration surface for tree-mumu bridges.

use mumu::parser::interpreter::Interpreter;

pub mod to_string;

pub fn register_all(interp: &mut Interpreter) {
    to_string::register_tree_to_string(interp);
}