Created
November 5, 2017 07:17
-
-
Save KevinKu/1d616da32f974a16bce53be8e5653ec1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
theory Example imports Main | |
begin | |
lemma "P∧Q⟹Q∧P" | |
apply (erule conjE) | |
apply (rule conjI) | |
apply assumption | |
apply assumption | |
done | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment