Gleam Overview

Gleam is a statically typed language for the Erlang VM (BEAM). It is designed to be a productive and fun language to work with. Gleam is a compiled language, which means that it is compiled to BEAM bytecode and runs on the Erlang VM. It is a functional programming language with a strong type system that helps catch errors at compile time. Few things I like about Gleam are: Gleam ships with all language tooling just like Go. This makes it easy to get started with Gleam. Gleam’s async support is very good. It is easy to write concurrent code in Gleam. No nulls representation in Gleam. This makes it easier to write safe code. Few things I dislike about Gleam are: ...