lean2/library/standard/unit.lean

8 lines
114 B
Text
Raw Normal View History

import logic
inductive unit : Type :=
| tt : unit
theorem inhabited_unit : inhabited unit
:= inhabited_intro tt