README.md

# tenthash

Gleam based implementation of TentHash(https://github.com/cessen/tenthash)

Currently only works in Erlang.

[![Package Version](https://img.shields.io/hexpm/v/tenthash)](https://hex.pm/packages/tenthash)
[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](https://hexdocs.pm/tenthash/)

```sh
gleam add tenthash@1
```
```gleam
import tenthash

pub fn main() {
  tenthash.hash("Hash a string")
}
```

Further documentation can be found at <https://hexdocs.pm/tenthash>.

## Development

```sh
gleam run   # Run the project
gleam test  # Run the tests
```