WIP Gleam bindings to ALSA
at main 26 lines 558 B view raw view rendered
1# fern 2 3WIP Gleam bindings to ALSA libasound2 using the Erlang [alsa](https://hex.pm/packages/alsa) package. 4 5[![Package Version](https://img.shields.io/hexpm/v/fern)](https://hex.pm/packages/fern) 6[![Hex Docs](https://img.shields.io/badge/hex-docs-ffaff3)](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```