aboutsummaryrefslogtreecommitdiff
path: root/src/content/chapter0_basics/lesson02_modules/code.gleam
blob: e258c33ceb95d57299fe85f6477cef0485604db4 (plain)
1
2
3
4
5
6
7
8
9
10
import gleam/io
import gleam/string as text

pub fn main() {
  // Use a function from the `gleam/io` module
  io.println("Hello, Mike!")

  // Use a function from the `gleam/string` module
  io.println(text.reverse("Hello, Joe!"))
}