pytools-rs 0.1.1

Miscellaneous tools referenced by DSL compilers/scientific-computing toolchains.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use pytools_rs::show_dot;

fn main() {
    let dot_code = r#"
    digraph {
        a -> c;
        c -> d;
        b -> c;
    }
    "#;
    show_dot(dot_code.to_string(), "xwindow");
}