8 lines
114 B
Text
8 lines
114 B
Text
|
import logic
|
||
|
|
||
|
inductive unit : Type :=
|
||
|
| tt : unit
|
||
|
|
||
|
theorem inhabited_unit : inhabited unit
|
||
|
:= inhabited_intro tt
|