lean4-htt/tests
Leonardo de Moura fc4ab139b5 feat: indented by
@Kha This one is not as useful as the indented `do`. When writing
interactive proofs I like the error message at the `}` showing the
resulting tactic state. We can simulate it using a `skip` in the end of the sequence :)
We remove the `skip` when the proof is done. Note that, the last `;`
is usually not part of the `by`. Example:
```lean
theorem ex (x y z : Nat) : y = z → y = x → x = z :=
fun _ _ =>
  have x = y by apply Eq.symm; assumption; -- <<< the last `;` is part of the `have`
  Eq.trans this (by assumption)
```
2020-09-14 14:20:02 -07:00
..
bench fix: Task: make reference and -j0 semantics eager, simplify 2020-09-14 17:57:33 +02:00
compiler fix: Task: make reference and -j0 semantics eager, simplify 2020-09-14 17:57:33 +02:00
elabissues chore: fix syntax 2020-05-21 09:57:35 -07:00
ir chore(tests): fix do syntax in tests 2019-06-30 13:04:34 +02:00
lean feat: indented by 2020-09-14 14:20:02 -07:00
playground test: final webserver demo 2020-06-25 10:48:38 +02:00
plugin chore: remove comment from Linter 2020-06-17 21:28:03 -07:00
.gitignore chore: move bin/ and .oleans into build directory 2020-05-14 14:47:54 +02:00
common.sh chore: always show test diff 2020-08-30 14:28:56 -07:00