Skip to content

Commit

Permalink
Merge pull request #67 from jaredcosulich/more-use-examples
Browse files Browse the repository at this point in the history
Adding more examples to `use` documentation
  • Loading branch information
joneugster authored Jun 21, 2024
2 parents 2881a0f + c10d255 commit 3e9657d
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Game/Levels/LessOrEqual/L01le_refl.lean
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,13 @@ that `x = 37` will work, then `use 37` will make progress.
Because `a ≤ b` is notation for \"there exists `c` such that `b = a + c`\",
you can make progress on goals of the form `a ≤ b` by `use`ing the
number which is morally `b - a`.
number which is morally `b - a` (i.e. `use b - a`)
Any of the following examples is possible assuming the type of the argument passed to the `use` function is accurate:
- `use 37`
- `use a`
- `use a * a + 1`
-/
TacticDoc use

Expand Down

0 comments on commit 3e9657d

Please sign in to comment.