macro_rules! stack_any { ($type:ty, $init:expr) => { ... }; }
Allocates memory on the stack and then places value based on given type and value.
let five = stack_any::stack_any!(i32, 5);