Skip to content

πŸ™ Extra code for when running on Erlang

License

Notifications You must be signed in to change notification settings

gleam-lang/erlang

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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.