jyafn 0.3.1

Computational graphs for Data Science that compile to machine code
Documentation
1
2
3
4
5
6
7
8
9
use std::process::Command;

fn main() {
    Command::new("make")
        .arg("qbe")
        .current_dir("vendored/qbe")
        .output()
        .expect("failed to execute process");
}