# slablit
[](https://travis-ci.com/myelin-ai/slablit)
[](https://crates.io/crates/slablit)
[](https://docs.rs/slablit)
> ⚠️ This crate requires the nightly compiler
Literal for slab creation
```toml
# Cargo.toml
[dependencies]
slablit = "0.2.0"
```
```rust
#![feature(decl_macro, macro_at_most_once_rep)]
use slablit::slab;
let (slab, [first, second, third]) = slab![10, 20, 30];
```