mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
3fbc9c7c55
Closes #1644 #1635
9 lines
79 B
Plaintext
9 lines
79 B
Plaintext
module Nat;
|
|
|
|
builtin nat
|
|
type Nat :=
|
|
zero : Nat
|
|
| suc : Nat → Nat;
|
|
|
|
end;
|