dhall-1.9.0: tests/tutorial/unions3A.dhall
let MyType = constructors < Empty : {} | Person : { name : Text, age : Natural } >
in [ MyType.Empty {=}
, MyType.Person { name = "John", age = +23 }
, MyType.Person { name = "Amy" , age = +25 }
]