packages feed

language-elm-0.1.1.1: test/spec/dec2.txt

withDefault : a -> Maybe a -> a
withDefault default m =
    case m of
        Just x ->
            x

        Nothing ->
            default