mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-13 22:29:35 +03:00
7 lines
132 B
Plaintext
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
|
|
()
|