dhall-1.11.0: Prelude/List/head
{-
Retrieve the first element of the list
Examples:
```
./head Integer [ 0, 1, 2 ] = [ 0 ] : Optional Integer
./head Integer ([] : List Integer) = [] : Optional Integer
```
-}
let head : ∀(a : Type) → List a → Optional a = List/head in head