packages feed

kempe-0.1.0.2: test/data/multiConstruct.kmp

type Either a b { Left a | Right b }

type Maybe a { Just a | Nothing }

mkJustRight : Int -- ((Either Int) (Maybe Int))
            =: [ Just Right ]

%foreign kabi mkJustRight