# Mála
ETS bags, an in-memory table where one key can have multiple values!
[](https://hex.pm/packages/mala)
[](https://hexdocs.pm/mala/)
```sh
gleam add mala@1
```
```gleam
import mala
pub fn main() -> Nil {
let bag = mala.new()
mala.insert(bag, "numbers", 1)
mala.insert(bag, "numbers", 2)
mala.insert(bag, "numbers", 3)
assert mala.get(bag, "numbers") == Ok([1, 2, 3])
}
```
Further documentation can be found at <https://hexdocs.pm/mala>.
## What does the name mean?
Mála is a Gaeilge word meaning bag. It's pronounced
[like this](https://www.focloir.ie/media/ei/sounds_ogg/ma_xla_m.ogg).