unison/unison-src/demo/1.u
2021-08-24 11:33:27 -07:00

5 lines
70 B
Plaintext

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