Prelude-v16.0.0
identity Natural 1 ≡ 1
identity Bool ≡ (λ(x : Bool) → x)
{-The identity function simply returns its input-}let identity : ∀(a : Type) → ∀(x : a) → a = λ(a : Type) → λ(x : a) → xlet example0 = assert : identity Natural 1 ≡ 1let example1 = assert : identity Bool ≡ (λ(x : Bool) → x)in identity