mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 06:23:13 +03:00
ee45ddf8c2
- Closes #2495
9 lines
95 B
Plaintext
9 lines
95 B
Plaintext
module M;
|
|
|
|
type Nat :=
|
|
| O : Nat
|
|
| S : Nat -> Nat;
|
|
|
|
fun : Nat -> Nat
|
|
| (S {S {x}}) := x;
|