Memory create, destroy, and allocators for WLib
npm install wlib-memoryMemory creation and destruction for WLib. Unlike wlib-malloc which
allocates raw memory, create and destroy will call constructors
and destructors.
create,``c++
UserDescription *user = create
char *characters = create
int *integer = create
// ...
destroy(user); // implicit type deduction
destroy
destroy
``