Kind2/base/IO.kind
2021-08-13 21:55:48 -03:00

4 lines
110 B
Plaintext

type IO <A: Type> {
end(value: A),
ask(query: String, param: String, then: (response: String) -> IO<A>),
}