README.md
# prng
[](https://hex.pm/packages/prng)
[](https://hexdocs.pm/prng/)
A pure random number generator for Gleam 🎲
> ⚙️ This package works for both the Erlang and JavaScript target
## Installation
To add this package to your Gleam project:
```sh
gleam add prng
```
## Generating random values
- [ ] why this package and not simply `int.random`/`float.random`
- [ ] you get to choose the seed: reproducible results
- [ ] it will behave exactly the same on both targets
- [ ] mindset shift (great Elm examples that could be used as inspiration!)
- [ ] show a bunch of examples! And don't forget to point to the docs' examples
## References
- [ ] add a link to the awesome Elm implementation and docs
- [ ] add a link to the reference algorithm