This library provides an array type that is similar to the built-in Vec type, but lives on the stack!
You may use this library to store a fixed number of elements of a specific type (even non-copy types!)
```rust use stack_array::Array;
let mut arr: Array
arr.push("Hello".tostring()); arr.push("World".tostring());
println!("{:#?}", arr); ```