Update lambda-calculus.html.markdown

This commit is contained in:
Brian Berns 2019-03-17 13:36:27 -04:00 committed by GitHub
parent 0133c434ff
commit 753325355a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -85,7 +85,7 @@ Using `IF`, we can define the basic boolean logic operators:
`a OR b` is equivalent to: `λab.IF a T b` `a OR b` is equivalent to: `λab.IF a T b`
`a NOT b` is equivalent to: `λa.IF a F T` `NOT a` is equivalent to: `λa.IF a F T`
*Note: `IF a b c` is essentially saying: `IF((a b) c)`* *Note: `IF a b c` is essentially saying: `IF((a b) c)`*