dhall-1.27.0: dhall-lang/Prelude/List/empty
{-
An empty list of the given type
-}
let empty
: ∀(a : Type) → List a
= λ(a : Type) → [] : List a
let example0 = assert : empty Bool ≡ ([] : List Bool)
in empty
{-
An empty list of the given type
-}
let empty
: ∀(a : Type) → List a
= λ(a : Type) → [] : List a
let example0 = assert : empty Bool ≡ ([] : List Bool)
in empty