8a85e4ee87
We add a remark saying the command `reveal <id>` should be used to access `<id>` definition.
10 lines
101 B
Text
10 lines
101 B
Text
open nat
|
|
|
|
theorem simple (a : nat) : a ≥ 0 :=
|
|
zero_le a
|
|
|
|
print simple
|
|
|
|
reveal simple
|
|
|
|
print simple
|