# lzf_gleam
Compress and decompress using LZF algorithm
[](https://hex.pm/packages/lzf_gleam)
[](https://hexdocs.pm/lzf_gleam/)
```sh
gleam add lzf_gleam
```
```gleam
import lzf
pub fn main() {
  // Compression:
  "abcabcabcabcabcabc" |> compress
  // <<3, 97, 98, 99, 240, 3, 240, 9, 1, 99>>
  
  // Decompression
  <<3, 97, 98, 99, 240, 3, 240, 9, 1, 99>> |> decompress
  // "abcabcabcabcabcabc"
}
```
Further documentation can be found at <https://hexdocs.pm/lzf_gleam>.
## Development
```sh
gleam run   # Run the project
gleam test  # Run the tests
gleam shell # Run an Erlang shell
```