Hello World in Gleam
Every programming journey starts with Hello World. Let’s write our first Gleam program.
The Code
Create a file named hello.gleam:
| |
Every programming journey starts with Hello World. Let’s write our first Gleam program.
Create a file named hello.gleam:
| |
Gleam is a statically typed functional language where every binding is immutable and the compiler infers types automatically. Unlike many languages, Gleam draws a hard line between integers and floats …
Read more →Every programming language is, at its core, a written argument. An argument that the languages which came before failed at something important — something worth spending years of your life to fix. …
Read more →