Skip to content

Instantly share code, notes, and snippets.

@Julian

Julian/README.md Secret

Created October 4, 2023 13:13
Show Gist options
  • Save Julian/1e06883d37d0448685f3cf8417469e0a to your computer and use it in GitHub Desktop.
Save Julian/1e06883d37d0448685f3cf8417469e0a to your computer and use it in GitHub Desktop.
README.md
Logical symbol Appears in goal Appears in hypothesis
  (for all) intro new_name apply expr or specialize name expr
  (there exists) use expr cases expr with
| intro new_name new_name => ...
  (implies) intro new_name apply expr or specialize name expr
  (if and only if) constructor rw [expr] or rw [← expr]
  (and) constructor cases expr with
| intro new_name new_name => ...
  (or) left or right cases expr with
| inl new_name => ...
| inr new_name => ...
¬  (not) intro new_name apply expr or specialize name expr
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment