boehm-rs

Rust interface to BoehmGC

Examples

```rust

use boehmrs::globalalloc::GcAlloc; use boehmrs::{gcinit,gc_enable};

[global_allocator]

static A: GcAlloc = GcAlloc;

fn main() { gcenable(); gcinit(); let string = String::from("Hello,world!");

println!("{}",string);

} ```