WIP Gleam bindings to ALSA
1# fern
2
3WIP Gleam bindings to ALSA libasound2 using the Erlang [alsa](https://hex.pm/packages/alsa) package.
4
5[](https://hex.pm/packages/fern)
6[](https://hexdocs.pm/fern/)
7
8```sh
9gleam add fern@1
10```
11```gleam
12import fern
13
14pub fn main() -> Nil {
15 // TODO: An example of the project in use
16}
17```
18
19Further documentation can be found at <https://hexdocs.pm/fern>.
20
21## Development
22
23```sh
24gleam run # Run the project
25gleam test # Run the tests
26```