1 2 3 4 5 6 7 8 9 10
#![crate_type = "lib"] use std::alloc::System; #[global_allocator] static ALLOCATOR: System = System; pub fn do_something() { format!("allocating a string!"); }