6 lines
87 B
Text
6 lines
87 B
Text
|
example (p q r : Prop) : p → q → r → r :=
|
||
|
begin
|
||
|
intro _ _ Hr,
|
||
|
assumption
|
||
|
end
|