aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src/introduction
diff options
context:
space:
mode:
authorMarvin Borner2023-11-11 23:52:05 +0100
committerMarvin Borner2023-11-11 23:52:05 +0100
commitbd1b6690c6847532e59841149b89bc7a8469f586 (patch)
tree4ed0d168bbee358fb648705dc675d6b1371ee528 /docs/wiki_src/introduction
parentff53e25945776668d12156193fa5bd7694055174 (diff)
Added basic syntax highlighting to wiki
Diffstat (limited to 'docs/wiki_src/introduction')
-rw-r--r--docs/wiki_src/introduction/lambda-calculus.md26
-rw-r--r--docs/wiki_src/introduction/syntax.md6
2 files changed, 15 insertions, 17 deletions
diff --git a/docs/wiki_src/introduction/lambda-calculus.md b/docs/wiki_src/introduction/lambda-calculus.md
index 574c5ee..067eaad 100644
--- a/docs/wiki_src/introduction/lambda-calculus.md
+++ b/docs/wiki_src/introduction/lambda-calculus.md
@@ -30,11 +30,9 @@ When we talk about reduction in bruijn, we typically mean "reduction
until normal form" -- we reduce until the term can't be reduced any
further (there does not exist any `((λx.E) A)`).
-``` bruijn
-((λx.x) (λx.x)) ⤳ (λx.x)
-((λx.x) (λx.λy.x)) ⤳ (λx.λy.x)
-((λx.λy.x) (λx.x)) ⤳ (λy.λx.x)
-```
+ ((λx.x) (λx.x)) ⤳ (λx.x)
+ ((λx.x) (λx.λy.x)) ⤳ (λx.λy.x)
+ ((λx.λy.x) (λx.x)) ⤳ (λy.λx.x)
## De Bruijn indices
@@ -49,9 +47,9 @@ De Bruijn replace the concept of variables by using numeric references
to the abstraction layer. Let me explain using an example: The
expression `λx.x` becomes `λ0` -- the `0` refers to the first parameter
of the abstraction. Subsequently, the expression `λx.λy.x y` becomes
-`λλ1 0`{.bruijn}. Basically, if you're reading from left to right
-starting at the abstraction you want to bind, you increment on every
-occurring `λ` until you arrive at the index.
+`λλ1 0`. Basically, if you're reading from left to right starting at the
+abstraction you want to bind, you increment on every occurring `λ` until
+you arrive at the index.
While confusing at first, programs written with De Bruijn indices can
actually be way easier to understand than the equivalent program with
@@ -72,10 +70,10 @@ The application of `λ0` and `λλ1 0` becomes `[0] [[1 0]]`{.bruijn}.
Random example reductions:
``` bruijn
-[0] [[1]] ⤳ [[1]]
-[[0]] [[1]] ⤳ [0]
-[[1]] [[1]] ⤳ [[[1]]]
-[[0]] [0] [[1]] ⤳ [[1]]
-[[0 1]] [0] ⤳ [0 [0]]
-[[1 0]] [0] ⤳ [0]
+a [0] [[1]] ⤳ [[1]]
+b [[0]] [[1]] ⤳ [0]
+c [[1]] [[1]] ⤳ [[[1]]]
+d [[0]] [0] [[1]] ⤳ [[1]]
+e [[0 1]] [0] ⤳ [0 [0]]
+f [[1 0]] [0] ⤳ [0]
```
diff --git a/docs/wiki_src/introduction/syntax.md b/docs/wiki_src/introduction/syntax.md
index 4dbc784..e14f8c6 100644
--- a/docs/wiki_src/introduction/syntax.md
+++ b/docs/wiki_src/introduction/syntax.md
@@ -138,9 +138,9 @@ structures](../coding/data-structures.md).
- *Numbers*: `(SXB)`{.bruijn} where `S` is `+`/`-`, `X` is a number
and `B` is the *base* of the encoded number (or `t` by default)
- - `u` for unary base (postive, Church): `(+42u)`
- - `b` for binary base (positive): `(+42b)`
- - `t` for balanced ternary (positive/negative): `(-42t)`
+ - `u` for unary base (postive, Church): `(+42u)`{.bruijn}
+ - `b` for binary base (positive): `(+42b)`{.bruijn}
+ - `t` for balanced ternary (positive/negative): `(-42t)`{.bruijn}
- *Characters*: `'C'`{.bruijn} where `C` is any ASCII character
- *Strings*: `"X1..XN"`{.bruijn} where `X1...XN` are any ASCII
characters