We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
use
exists では通らず、use が通るようなコード例を探したい
The text was updated successfully, but these errors were encountered:
Zulip: https://leanprover.zulipchat.com/#narrow/stream/113488-general/topic/.60use.60.20vs.20.60exists.60
Sorry, something went wrong.
Zulip で教えてもらえた.
inductive Exists3 {α β : Sort*} (p : α → β → Prop) : Prop | mk (x : α) (y : β) (h : p x y) example : Exists3 (fun (x1 x2 : String) => x1 = x2) := by exists "hello" -- failure, insufficient number of arguments example : Exists3 (fun (x1 x2 : String) => x1 = x2) := by use "hello"
https://leanprover.zulipchat.com/#narrow/stream/113488-general/topic/.E2.9C.94.20.60use.60.20vs.20.60exists.60/near/446414572
d2e5e63
Seasawher
Successfully merging a pull request may close this issue.
exists では通らず、use が通るようなコード例を探したい
The text was updated successfully, but these errors were encountered: