blob: 6e27837b266f25d5543091a73c322a58652832c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
foo = fun '(x, y) => x + y
: nat * nat -> nat
foo is not universe polymorphic
forall '(a, b), a /\ b
: Prop
foo = λ '(x, y), x + y
: nat * nat → nat
foo is not universe polymorphic
∀ '(a, b), a ∧ b
: Prop
|