13 lines
245 B
Text
13 lines
245 B
Text
example : True := by
|
|
apply True.intro
|
|
--^ textDocument/hover
|
|
|
|
example : True := by
|
|
simp [True.intro]
|
|
--^ textDocument/hover
|
|
|
|
example (n : Nat) : True := by
|
|
match n with
|
|
| Nat.zero => _
|
|
--^ textDocument/hover
|
|
| n + 1 => _
|