7 lines
111 B
Text
7 lines
111 B
Text
example (p q : Prop) : p → q → p :=
|
|
begin
|
|
trace "foo",
|
|
intros,
|
|
trace "hello world",
|
|
assumption
|
|
end
|