aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/appendix_e.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_e.md
parent0f7bfa0d4a4e5a79fffe72adec1dd35992c7dde3 (diff)
Added a chapter on cross-platform Lux.
Diffstat (limited to 'documentation/book/the_lux_programming_language/appendix_e.md')
-rw-r--r--documentation/book/the_lux_programming_language/appendix_e.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/documentation/book/the_lux_programming_language/appendix_e.md b/documentation/book/the_lux_programming_language/appendix_e.md
index b7740abf2..a68636e91 100644
--- a/documentation/book/the_lux_programming_language/appendix_e.md
+++ b/documentation/book/the_lux_programming_language/appendix_e.md
@@ -83,7 +83,7 @@ One that I really like and has turned out to be very useful to me, is that you c
Here are some examples from the `library/lux/ffi` module, where I have some types and code-parsers for the many macros implemented there:
-```
+```clojure
(type: .public Privacy
(Variant
#PublicP
@@ -113,7 +113,7 @@ This wouldn't be possible if variant types weren't nested/composable; forcing me
Here's an example of `<>.and` in action:
-```
+```clojure
... From library/lux/target/jvm/type
(type: .public Argument
[Text (Type Value)])