Rust interface to BoehmGC
```rust
use boehmrs::globalalloc::GcAlloc; use boehmrs::{gcinit,gc_enable};
static A: GcAlloc = GcAlloc;
fn main() { gcenable(); gcinit(); let string = String::from("Hello,world!");
println!("{}",string);
} ```