diff options
author | Eduardo Julian | 2022-06-04 19:34:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-04 19:34:42 -0400 |
commit | f9e33ae96aec4741385a576719786092c9e68043 (patch) | |
tree | 140057dfc054346eab721f9905f0f0fff22ad933 /lux-ruby/source | |
parent | 56d2835d35093e2d92c5e8a4371aa322b55e037b (diff) |
De-sigil-ification: #
Diffstat (limited to 'lux-ruby/source')
-rw-r--r-- | lux-ruby/source/program.lux | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index 69109108b..50934cf91 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -761,7 +761,7 @@ (def: (ingest context content) (|> content - (# utf8.codec decoded) + (at utf8.codec decoded) try.trusted (as _.Statement))) @@ -966,7 +966,7 @@ platform.#phase ruby.generate platform.#runtime runtime.generate platform.#phase_wrapper ..phase_wrapper - platform.#write (|>> _.code (# utf8.codec encoded))]))) + platform.#write (|>> _.code (at utf8.codec encoded))]))) (def: (program context program) (Program _.Expression _.Statement) @@ -983,7 +983,7 @@ (def: (declare_success! _) (-> Any (Async Any)) - (async.future (# world/program.default exit +0))) + (async.future (at world/program.default exit +0))) (def: (lux_compiler it) (-> Any platform.Custom) @@ -1005,7 +1005,7 @@ service [packager.package (format (cli.target service) - (# file.default separator) + (at file.default separator) "program")])] (..declare_success! [])) (io.io []))) |