10 lines
164 B
Text
10 lines
164 B
Text
import standard
|
|
|
|
example : ∃(b : nat), b = 1 ∧ 0 ≤ b :=
|
|
begin
|
|
apply exists.intro,
|
|
apply and.intro,
|
|
apply rfl,
|
|
generalize 1 z,
|
|
exact nat.zero_le
|
|
end
|