Skip to content

Instantly share code, notes, and snippets.

@AlecsFerra
Last active May 20, 2023 19:07
Show Gist options
  • Save AlecsFerra/28647b70629aaf9f6143e1237448e61d to your computer and use it in GitHub Desktop.
Save AlecsFerra/28647b70629aaf9f6143e1237448e61d to your computer and use it in GitHub Desktop.
module AxiomK where
open import Relation.Binary.PropositionalEquality using (_≡_)
open _≡_
-- All the equality proofs are the same ⁾
-- Unless we use the `--without-K` option ⁾
same-≡ : ∀ {l} {A : Set l} {a b : A} → (p₁ p₂ : a ≡ b) → p₁ ≡ p₂
same-≡ refl refl = refl
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment