LoginSignup
2

More than 5 years have passed since last update.

Ssreflect Tutorial最初のコード

Posted at
SsreflectSample.v
Require Import ssreflect ssrbool eqtype ssrnat.

Section HilbertSaxiom.

Variables A B C : Prop.

Lemma HilbertS : (A -> B -> C) -> (A -> B) -> A -> C.
Proof.
 move=> hAiBiC hAiB hA.
 move: hAiBiC.
 apply.
   by [].
 by apply: hAiB.
Qed.

End HilbertSaxiom.

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2