Skip to content

Instantly share code, notes, and snippets.

@pasberth
Created January 25, 2014 08:13
Show Gist options
  • Select an option

  • Save pasberth/8613371 to your computer and use it in GitHub Desktop.

Select an option

Save pasberth/8613371 to your computer and use it in GitHub Desktop.
三段論法
Theorem syllogism : forall (A B C : Prop), (B -> C) -> (A -> B) -> A -> C.
Proof.
intros A B C H H0 H1.
apply H.
apply H0.
apply H1.
Qed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment