aboutsummaryrefslogtreecommitdiff
path: root/lessons/src/lesson035_nil/code.gleam
blob: c28080b6fe5796afb89a8262997312d5f8a9d60c (plain)
1
2
3
4
5
6
7
8
9
10
11
import gleam/io

pub fn main() {
  let x = Nil
  io.debug(x)

  // let y: List(String) = Nil

  let result = io.println("Hello!")
  io.debug(result == Nil)
}