Skip to content

Latest commit

 

History

History
21 lines (16 loc) · 392 Bytes

README.md

File metadata and controls

21 lines (16 loc) · 392 Bytes

Gleam Erlang 🐙

A library for making use of Erlang specific code!

gleam add gleam_erlang@1
import gleam/io
import gleam/erlang/process

pub fn main() {
  process.spawn(fn() { 
    io.println("Hello from another process running concurrently!")
  })
}

Documentation can be found at https://hexdocs.pm/gleam_erlang/.

This library requires OTP 23.0 or higher.