# slablit
[](https://crates.io/crates/slablit)
[](https://docs.rs/slablit)
[](https://deps.rs/repo/github/myelin-ai/slablit)
Literal for slab creation
## Usage
Add this to your `Cargo.toml`:
```toml
[dependencies]
slablit = "0.3"
```
## Example
```rust
use slablit::slab;
let (slab, [first, second, third]) = slab![10, 20, 30];
```