8 lines
102 B
Text
8 lines
102 B
Text
|
open nat
|
|||
|
variables (P : ℕ → Prop)
|
|||
|
|
|||
|
example (H : ∃n, P n) : ℕ :=
|
|||
|
begin
|
|||
|
cases H with n p,
|
|||
|
end
|