Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save BekaValentine/1dab408b0cd732bac645e25b2554c668 to your computer and use it in GitHub Desktop.

Select an option

Save BekaValentine/1dab408b0cd732bac645e25b2554c668 to your computer and use it in GitHub Desktop.
data Tm : Nat -> Set where
var : forall {n} -> Fin n -> Tm n
lam : forall {n} -> Tm (suc n) -> Tm n
app : forall {n} -> Tm n -> Tm n -> Tm n
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment