mirror of
https://github.com/unisonweb/unison.git
synced 2024-11-04 01:03:36 +03:00
6 lines
69 B
Plaintext
6 lines
69 B
Plaintext
r4 : Int -> Int
|
|
r4 x = match x with
|
|
+1 -> -1
|
|
_ -> Int.negate x
|
|
|