lean2/library/standard/unit.lean
Leonardo de Moura e1d807a077 feat(library/standard): add inhabited, and files option and unit
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
2014-06-29 19:30:38 -07:00

7 lines
114 B
Text

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