https://github.com/gleam-lang/erlang
🐙 Extra code for when running on Erlang
https://github.com/gleam-lang/erlang
beam erlang gleam runtime
Last synced: about 1 month ago
JSON representation
🐙 Extra code for when running on Erlang
- Host: GitHub
- URL: https://github.com/gleam-lang/erlang
- Owner: gleam-lang
- License: apache-2.0
- Created: 2021-02-09T08:35:15.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-06-03T12:49:04.000Z (about 1 month ago)
- Last Synced: 2025-06-09T02:51:27.911Z (about 1 month ago)
- Topics: beam, erlang, gleam, runtime
- Language: Gleam
- Homepage:
- Size: 248 KB
- Stars: 114
- Watchers: 5
- Forks: 43
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-gleam - gleam_erlang - [📚](https://hexdocs.pm/gleam_erlang/) - A Gleam library for working with Erlang (Packages / Erlang and OTP)
- awesome-ccamel - gleam-lang/erlang - 🐙 Types and functions for programs running on Erlang! (Gleam)
README
# Gleam Erlang 🐙
A library for making use of Erlang specific code!
```shell
gleam add gleam_erlang@1
```
```gleam
import gleam/io
import gleam/erlang/processpub fn main() {
process.spawn(fn() {
io.println("Hello from another process running concurrently!")
})
}
```Documentation can be found at .
This library requires OTP 23.0 or higher.