14 lines
208 B
Text
14 lines
208 B
Text
exit
|
|
theorem foo : Type₁ := unit
|
|
|
|
example : foo = unit :=
|
|
by unfold foo
|
|
|
|
example : foo = unit :=
|
|
by unfold [foo]
|
|
|
|
example : foo = unit :=
|
|
by rewrite [↑foo]
|
|
|
|
example : foo = unit :=
|
|
by rewrite [↑[foo] ]
|