mirror of
https://github.com/anoma/juvix.git
synced 2024-12-04 17:07:28 +03:00
21d5034e60
In this PR, we ran the Juvix formatter so that we can now freely run `make format`, `make check`, or `make pre-commit` without any unexpected file changes. This goes after: - https://github.com/anoma/juvix/pull/2486
14 lines
261 B
Plaintext
14 lines
261 B
Plaintext
module HoleInSignature;
|
|
|
|
type Pair (A : Type) (B : Type) :=
|
|
mkPair : A → B → Pair A B;
|
|
|
|
type Bool :=
|
|
| true : Bool
|
|
| false : Bool;
|
|
|
|
p : Pair _ _ := mkPair true false;
|
|
|
|
p2 : (A : Type) → (B : Type) → _ → B → Pair A _
|
|
| _ _ a b := mkPair a b;
|