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) }