mirror of
https://github.com/anoma/juvix.git
synced 2024-12-14 08:27:03 +03:00
10 lines
85 B
Plaintext
10 lines
85 B
Plaintext
module Nat;
|
|
|
|
builtin nat
|
|
inductive Nat {
|
|
zero : Nat;
|
|
suc : Nat → Nat;
|
|
};
|
|
|
|
end;
|