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