9 lines
103 B
Text
9 lines
103 B
Text
|
import logic
|
||
|
|
||
|
example : ∃ a : num, a = a :=
|
||
|
begin
|
||
|
fapply exists_intro,
|
||
|
exact 0,
|
||
|
apply rfl,
|
||
|
end
|