2014-12-01 05:16:01 +00:00
|
|
|
import logic.eq
|
2014-11-21 18:07:16 +00:00
|
|
|
variable {a : Type}
|
|
|
|
|
|
|
|
definition foo {A : Type} : A → A :=
|
|
|
|
begin
|
|
|
|
intro a, exact a
|
|
|
|
end
|
|
|
|
check @foo
|
|
|
|
|
2015-10-13 22:39:03 +00:00
|
|
|
example : foo 10 = (10:num) :=
|
2014-11-21 18:07:16 +00:00
|
|
|
rfl
|