Skip to main content

README.md

# fused

A project that aims to fuse the concurrency models of OTP and Javascript to allow the careful user to write concurrent code that runs on both the otp backend and the gleam backend

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

```sh
gleam add fused@1
```
```gleam
import fused

pub fn main() -> Nil {
  // TODO: An example of the project in use
}
```

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

## Development

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