Here is a program that prints out the text "Hello, Joe!".
It does this by using the `println` function which has been imported from the
gleam/io
module, which is part of the Gleam standard library.
In a normal Gleam program this program would be run use the command
gleam run
on the command line, but here in this tutorial the
program is automatically compiled and run as the code is edited.
Try changing the text being printed to Hello, Mike!
and see what
happens.