aboutsummaryrefslogtreecommitdiff
path: root/lux-ruby
diff options
context:
space:
mode:
authorEduardo Julian2021-09-12 15:39:55 -0400
committerEduardo Julian2021-09-12 15:39:55 -0400
commit2dbbaaec93a53f8dd0b96a0028b9cf125c9066cd (patch)
tree14bc8b5abe09b46ef005c3ff7cf132f1d98ddf0d /lux-ruby
parentdda05bca0956af5e5b3875c4cc36e61aa04772e4 (diff)
Re-named \ => # && \\ => ##
Diffstat (limited to 'lux-ruby')
-rw-r--r--lux-ruby/source/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux
index c8fc1b49e..6ba17f4be 100644
--- a/lux-ruby/source/program.lux
+++ b/lux-ruby/source/program.lux
@@ -19,7 +19,7 @@
["<>" parser
["<[0]>" code]]]
[data
- ["[0]" text ("[1]\[0]" hash)
+ ["[0]" text ("[1]#[0]" hash)
["%" format {"+" [format]}]
[encoding
["[0]" utf8]]]
@@ -625,7 +625,7 @@
(def: (ingest context content)
(|> content
- (\ utf8.codec decoded)
+ (# utf8.codec decoded)
try.trusted
(:as _.Statement)))
@@ -797,7 +797,7 @@
platform.#phase ruby.generate
platform.#runtime runtime.generate
platform.#phase_wrapper ..phase_wrapper
- platform.#write (|>> _.code (\ utf8.codec encoded))])))
+ platform.#write (|>> _.code (# utf8.codec encoded))])))
(def: (program context program)
(Program _.Expression _.Statement)
@@ -807,7 +807,7 @@
(def: (declare_success! _)
(-> Any (Async Any))
- (async.future (\ world/program.default exit +0)))
+ (async.future (# world/program.default exit +0)))
(program: [service /cli.service]
(let [extension ".rb"]
@@ -830,7 +830,7 @@
_.then
(|>>))
(format (/cli.target service)
- (\ file.default separator)
+ (# file.default separator)
"program"
extension)])]
(..declare_success! []))