unison/unison-src/demo/1.u
2019-03-29 23:03:40 +01:00

7 lines
72 B
Plaintext

increment : Nat -> Nat
increment n = n + 1
> x = 1 + 40
> increment x