# stackstring
A fixed-size inline string implementation, meant for simple use cases.
The string is backed by an array of size `L` and the string can have a length of up to `L` bytes, and will be space-padded if length is less than `L`.
## Example
See the `examples/` directory for more.