unison/unison-src/tests/r2.u

7 lines
132 B
Plaintext

type Optional a = None | Some a
r2 : UInt64
r2 = case Optional.Some true of
Optional.Some true -> 1
Optional.Some false -> 0
()