Guest User

Untitled

a guest
Jun 17th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. 1. T[x] => x
  2. 2. T[(E₁ E₂)] => (T[E₁] T[E₂])
  3. 3. T[λx.E] => (K T[E]) (if x is not free in E)
  4. 4. T[λx.x] => I
  5. 5. T[λx.λy.E] => T[λx.T[λy.E]] (if x is free in E)
  6. 6. T[λx.(E₁ E₂)] => (S T[λx.E₁] T[λx.E₂])
  7.  
  8. T : Lambda -> Comb U Lambda lr lol
Add Comment
Please, Sign In to add comment