Kind2/base/Either.kind
MaiaVictor 6c5b850cd3 UwU
2021-02-19 20:15:26 -03:00

4 lines
71 B
Plaintext

type Either <A: Type, B: Type> {
left(value: A),
right(value: B),
}