A high performance #[global_allocator]
implementation using the bump-pointer allocation algorithm
```rust extern crate bump_allocator;
static GLOBAL: bumpallocator::BumpPointer = bumpallocator::BumpPointer;
fn main() { // Heap allocations here... let _boxed = Box::new(233); } ```