Skip to content

Instantly share code, notes, and snippets.

@moutend
Created March 21, 2014 13:07
Show Gist options
  • Select an option

  • Save moutend/9685784 to your computer and use it in GitHub Desktop.

Select an option

Save moutend/9685784 to your computer and use it in GitHub Desktop.
Coq < Definition prop0 : forall (A : Prop), A -> A :=
Coq < fun A x => x.
prop0 is defined
Coq < Eval compute in prop0.
= fun (A : Prop) (x : A) => x
: forall A : Prop, A -> A
Coq <
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment