(* coq-prog-args: ("-top" "PrintInfos") *)
About existT.
Print existT.
Print Implicit existT.
Print eq_refl.
About eq_refl.
Print Implicit eq_refl.
Print Nat.add.
About Nat.add.
Print Implicit Nat.add.
About plus_n_O.
Arguments le_S {n} [m] _.
Print le_S.
About comparison.
Print comparison.
Definition foo := forall x, x = 0.
Parameter bar : foo.
Arguments bar {x}.
About bar.
Print bar.
About Peano. (* Module *)
About sym_eq. (* Notation *)
Arguments eq_refl {A} {x}, {A} x.
Print eq_refl.
Definition newdef := fun x:nat => x.
Goal forall n:nat, n <> newdef n -> newdef n <> n -> False.
intros n h h'.
About n. (* search hypothesis *)
About h. (* search hypothesis *)
Abort.
Goal forall n:nat, let g := newdef in n <> newdef n -> newdef n <> n -> False.
intros n g h h'.
About g. (* search hypothesis *)
About h. (* search hypothesis *)
Abort.
¤ Dauer der Verarbeitung: 0.13 Sekunden
(vorverarbeitet)
¤
|
Haftungshinweis
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung ist noch experimentell.
|