aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson01_hello_world/code.gleam
blob: 67cc6b4aa36ebc25099371bd9d92f21a49dfaaa4 (plain)
1
2
3
4
5
6
7
// Import a Gleam module from the standard library
import gleam/io

pub fn main() {
  // Print to the console
  io.println("Hello, Joe!")
}