lean4-htt/tests/lean/print_reducible.lean
2017-03-09 18:41:19 -08:00

19 lines
448 B
Text

prelude
attribute [reducible]
definition id₁ {A : Type} (a : A) := a
attribute [reducible]
definition id₂ {A : Type} (a : A) := a
attribute [irreducible]
definition id₅ {A : Type} (a : A) := a
attribute [irreducible]
definition id₆ {A : Type} (a : A) := a
attribute [reducible]
definition pr {A B : Type} (a : A) (b : B) := a
definition pr2 {A B : Type} (a : A) (b : B) := a
#print [reducible]
#print "-----------"
#print [irreducible]