From 09e2747bf8c6dcdc1d7318f2490f0de37d77b39f Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sun, 5 Sep 2021 21:03:05 -0400 Subject: Added a chapter on cross-platform Lux. --- documentation/book/the_lux_programming_language/appendix_g.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'documentation/book/the_lux_programming_language/appendix_g.md') 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,}") -- cgit v1.2.3