aboutsummaryrefslogtreecommitdiffhomepage
path: root/docs/wiki_src
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
parentff53e25945776668d12156193fa5bd7694055174 (diff)
Added basic syntax highlighting to wiki
Diffstat (limited to 'docs/wiki_src')
-rw-r--r--docs/wiki_src/coding/compilation.md23
-rw-r--r--docs/wiki_src/coding/data-structures.md2
-rw-r--r--docs/wiki_src/coding/meta-programming.md10
-rw-r--r--docs/wiki_src/custom.css11
-rw-r--r--docs/wiki_src/introduction/lambda-calculus.md26
-rw-r--r--docs/wiki_src/introduction/syntax.md6
6 files changed, 42 insertions, 36 deletions
diff --git a/docs/wiki_src/coding/compilation.md b/docs/wiki_src/coding/compilation.md
index 9863c21..330bc9f 100644
--- a/docs/wiki_src/coding/compilation.md
+++ b/docs/wiki_src/coding/compilation.md
@@ -1,6 +1,6 @@
# Compilation
-Bruijn can be compiled to John Tromp’s binary lambda calculus (BLC).
+Bruijn can be compiled to John Tromp's binary lambda calculus (BLC).
BLC uses the following encoding:
@@ -12,26 +12,27 @@ BLC uses the following encoding:
There are two modes of compilation:
-- **Bitwise** compiles to BLC and encodes every bit as 1 bit and pads
- the last remaining byte: `bruijn -b path`
-- **ASCII** compiles to BLC and encodes every bit as 1 ASCII character
- (`'0'`/`'1'`): `bruijn -B path`
+- **Bitwise** compiles to BLC and encodes every bit as 1 bit and pads
+ the last remaining byte: `bruijn -b path`
+- **ASCII** compiles to BLC and encodes every bit as 1 ASCII character
+ (`'0'`/`'1'`): `bruijn -B path`
## Compilation overhead
Typical compilation to BLC results in much redundant code, since every
used function gets substituted and translated separately. In
-`((+3) + (+4) + (+3))`, for example, `add` gets compiled to BLC two
-times, resulting in a redundant overhead of around 3500 bits.
+`((+3) + (+4) + (+3))`{.bruijn}, for example, `add`{.bruijn} gets
+compiled to BLC two times, resulting in a redundant overhead of around
+3500 bits.
This is because BLC was never intended for compilation of normal
programs, but mainly as an academic encoding model. This also means that
-it’s quite good for writing very expressive and minimal programs
-(i.e. obfuscated code golfing, see [John Tromp’s
+it's quite good for writing very expressive and minimal programs
+(i.e. obfuscated code golfing, see [John Tromp's
IOCCC](https://ioccc.org/2012/tromp/hint.html)).
-Most programs, however, won’t be golfed and can result in rather large
-compiled programs. While there’s not really any practical need for
+Most programs, however, won't be golfed and can result in rather large
+compiled programs. While there's not really any practical need for
compilation aside from golfing, you could still use the
[BLoC](https://github.com/marvinborner/bloc) project to optimize
redundant terms.
diff --git a/docs/wiki_src/coding/data-structures.md b/docs/wiki_src/coding/data-structures.md
index 0516bf7..3d2a387 100644
--- a/docs/wiki_src/coding/data-structures.md
+++ b/docs/wiki_src/coding/data-structures.md
@@ -39,7 +39,7 @@ syntactic sugar.
- default syntactic sugar for numbers (optional suffix `t`),
e.g. `(+3)`{.bruijn}
-- encoding: `(+4)`{.bruijn}=`[[[[(1 (1 3))]]]]`,
+- encoding: `(+4)`{.bruijn}=`[[[[(1 (1 3))]]]]`{.bruijn},
`(-4)`{.bruijn}=`[[[[(2 (2 3))]]]]`{.bruijn}
- faster and more compact than binary[^1]
- positive and negative numbers
diff --git a/docs/wiki_src/coding/meta-programming.md b/docs/wiki_src/coding/meta-programming.md
index 5d1caa0..334e285 100644
--- a/docs/wiki_src/coding/meta-programming.md
+++ b/docs/wiki_src/coding/meta-programming.md
@@ -1,4 +1,4 @@
-# Meta programming
+# Metaprogramming
Bruijn has a homoiconic meta encoding inspired by Lisp's quoting
feature.
@@ -8,11 +8,9 @@ self-interpretation](https://text.marvinborner.de/2023-09-03-21.html).
## Encoding
-``` bruijn
-`X ⤳ [[[2 (+Xu)]]]
-`(M N) ⤳ [[[1 `M `N]]]
-`[M] ⤳ [[[0 `M]]]
-```
+ `X ⤳ [[[2 (+Xu)]]]
+ `(M N) ⤳ [[[1 `M `N]]]
+ `[M] ⤳ [[[0 `M]]]
Any quoted term gets converted to this encoding:
diff --git a/docs/wiki_src/custom.css b/docs/wiki_src/custom.css
index 170b4cc..d68a10c 100644
--- a/docs/wiki_src/custom.css
+++ b/docs/wiki_src/custom.css
@@ -2,7 +2,16 @@ pre {
width: 100%;
white-space: pre;
overflow-x: scroll;
- display: inline-grid;
+ display: grid;
+}
+
+/* to match std */
+pre, pre > code, code.bruijn {
+ background-color: #222222;
+}
+
+pre a {
+ color: var(--font-color);
}
.headerlink {
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