aboutsummaryrefslogtreecommitdiff
path: root/documentation/book/the_lux_programming_language/appendix_g.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_g.md
parent0f7bfa0d4a4e5a79fffe72adec1dd35992c7dde3 (diff)
Added a chapter on cross-platform Lux.
Diffstat (limited to 'documentation/book/the_lux_programming_language/appendix_g.md')
-rw-r--r--documentation/book/the_lux_programming_language/appendix_g.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/book/the_lux_programming_language/appendix_g.md b/documentation/book/the_lux_programming_language/appendix_g.md
index 49f8e92db..9d6505c77 100644
--- a/documentation/book/the_lux_programming_language/appendix_g.md
+++ b/documentation/book/the_lux_programming_language/appendix_g.md
@@ -10,7 +10,7 @@ Of course, the parser may fail, in which case the user should receive some meani
The `library/lux/control/parser/text` library provides a type, and a host of combinators, for building and working with text parsers.
-```
+```clojure
(type: .public Offset
Nat)
@@ -37,7 +37,7 @@ The `regex` macro, in turn, compiles the given syntax into a text parser, which
Here are some samples for regular expressions:
-```
+```clojure
... Literals
(regex "a")
@@ -119,7 +119,7 @@ This is important because the groups and alternations that you use in your regul
For example:
-```
+```clojure
... This returns a single piece of text
(regex "a{1,}")