@Armael, this commit implements the nary existsi. We can now write a) existsi t b) existsi [t_1, t_2, t_3]
6 lines
98 B
Text
6 lines
98 B
Text
example : ∃ a b c : nat, a = b + c :=
|
|
begin
|
|
existsi [_, _, _],
|
|
refl,
|
|
repeat {exact 0}
|
|
end
|