9 lines
132 B
Text
9 lines
132 B
Text
|
import tools.tactic logic.prop
|
||
|
|
||
|
variable p : Prop
|
||
|
definition foo (q : Prop) : q → true :=
|
||
|
begin
|
||
|
intro r,
|
||
|
apply true.intro
|
||
|
end
|