aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/appendix_f.md
diff options
context:
space:
mode:
authorEduardo Julian2021-09-05 21:03:05 -0400
committerEduardo Julian2021-09-05 21:03:05 -0400
commit09e2747bf8c6dcdc1d7318f2490f0de37d77b39f (patch)
treeccee4dd90b0f5f84d813a8f29b3b9a5dc602068b /documentation/book/the_lux_programming_language/appendix_f.md
parent0f7bfa0d4a4e5a79fffe72adec1dd35992c7dde3 (diff)
Added a chapter on cross-platform Lux.
Diffstat (limited to 'documentation/book/the_lux_programming_language/appendix_f.md')
-rw-r--r--documentation/book/the_lux_programming_language/appendix_f.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/book/the_lux_programming_language/appendix_f.md b/documentation/book/the_lux_programming_language/appendix_f.md
index b977623a8..461d54417 100644
--- a/documentation/book/the_lux_programming_language/appendix_f.md
+++ b/documentation/book/the_lux_programming_language/appendix_f.md
@@ -37,14 +37,14 @@ Fantastic!
This is how you'd use it:
-```
+```clojure
... Equality for nats
(\ nat.equivalence = x y)
## vs
(\\ = x y)
```
-```
+```clojure
... Equality for lists of nats
(\ (list.equivalence nat.equivalence) =
(list.indices 10)
@@ -53,7 +53,7 @@ This is how you'd use it:
(\\ = (list.indices 10) (list.indices 10))
```
-```
+```clojure
... Functor mapping
(\ list.functor each nat.inc (list.indices 10))
... vs