packages feed

dhall-1.14.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 }
    ]