guile 0.0.2

Safe bindings to GNU Guile.
Documentation
extern crate guile;

fn main() {
    guile::init(|vm| {
        let mut args = Vec::new();
        args.push("Test".to_string());
        vm.shell(args);
    });
}