mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
8 lines
135 B
Plaintext
8 lines
135 B
Plaintext
r3 : Nat
|
|
r3 = match Optional.Some true with
|
|
Optional.Some true -> 1
|
|
Optional.Some false -> 0
|
|
Optional.None -> bug "unexpected"
|
|
|
|
|