e1d807a077
Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
7 lines
114 B
Text
7 lines
114 B
Text
import logic
|
|
|
|
inductive unit : Type :=
|
|
| tt : unit
|
|
|
|
theorem inhabited_unit : inhabited unit
|
|
:= inhabited_intro tt
|