summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorDivay Prakash <divayprakash@users.noreply.github.com>2019-02-24 23:23:57 +0530
committerGitHub <noreply@github.com>2019-02-24 23:23:57 +0530
commitadd9402835c42a9630e7815d58ff07e25fa82287 (patch)
tree16af9f01ba684ac1d23e98e746565e4b57681bf3
parent2998e064549bdc63e029c3cc1082e31f99e4205b (diff)
parentef11bde030bc530f713d35f1ff03a248ea658b56 (diff)
Merge pull request #3477 from whitemuu/master
[lambda-calculus/en] markdown syntax issue
-rw-r--r--lambda-calculus.html.markdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/lambda-calculus.html.markdown b/lambda-calculus.html.markdown
index 8343d62a..a5535d6c 100644
--- a/lambda-calculus.html.markdown
+++ b/lambda-calculus.html.markdown
@@ -139,6 +139,7 @@ Take the church number 2 for example:
`2 = λf.λx.f(f x)`
For the inner part `λx.f(f x)`:
+
```
λx.f(f x)
= S (λx.f) (λx.(f x)) (case 3)
@@ -147,6 +148,7 @@ For the inner part `λx.f(f x)`:
```
So:
+
```
2
= λf.λx.f(f x)
@@ -156,6 +158,7 @@ So:
```
For the first argument `λf.(S (K f))`:
+
```
λf.(S (K f))
= S (λf.S) (λf.(K f)) (case 3)
@@ -164,6 +167,7 @@ For the first argument `λf.(S (K f))`:
```
For the second argument `λf.(S (K f) I)`:
+
```
λf.(S (K f) I)
= λf.((S (K f)) I)
@@ -174,6 +178,7 @@ For the second argument `λf.(S (K f) I)`:
```
Merging them up:
+
```
2
= S (λf.(S (K f))) (λf.(S (K f) I))