diff options
author | Eduardo Julian | 2022-12-02 19:33:00 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-12-02 19:33:00 -0400 |
commit | 94e5802f594a73245fce0fbd885103b8bf210d57 (patch) | |
tree | 65e5799c0be40f5f015b39bfa6c87c9c27fd9424 /lux-r | |
parent | b491dfff00219d5206075ea65468e00ab657075d (diff) |
Added some simple time-series handling machinery.
Diffstat (limited to '')
-rw-r--r-- | lux-r/source/program.lux | 8 | ||||
-rw-r--r-- | lux-ruby/source/program.lux | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lux-r/source/program.lux b/lux-r/source/program.lux index 2fa7172e4..637ea2013 100644 --- a/lux-r/source/program.lux +++ b/lux-r/source/program.lux @@ -534,7 +534,7 @@ (wrap [global value definition])))) (def (ingest context content) - (|> content (at utf8.codec decoded) try.trusted (as _.Expression))) + (|> content (of utf8.codec decoded) try.trusted (as _.Expression))) (def (re_learn context content) (run! content)) @@ -555,7 +555,7 @@ platform.#host host platform.#phase r.translate platform.#runtime runtime.translate - platform.#write (|>> _.code (at utf8.codec encoded))]]))) + platform.#write (|>> _.code (of utf8.codec encoded))]]))) (def (program context program) (Program _.Expression _.Expression) @@ -585,7 +585,7 @@ (def (declare_success! _) (-> Any (Promise Any)) - (promise.future (at world/program.default exit +0))) + (promise.future (of world/program.default exit +0))) (def (scope body) (-> _.Expression _.Expression) @@ -619,7 +619,7 @@ _.then ..scope) (format (/cli.target service) - (at file.default separator) + (of file.default separator) "program" extension)])] (..declare_success! [])) diff --git a/lux-ruby/source/program.lux b/lux-ruby/source/program.lux index df6454e1c..64a9ccb34 100644 --- a/lux-ruby/source/program.lux +++ b/lux-ruby/source/program.lux @@ -765,7 +765,7 @@ (def (ingest context content) (|> content - (at utf8.codec decoded) + (of utf8.codec decoded) try.trusted (as _.Statement))) @@ -966,7 +966,7 @@ platform.#phase ruby.expression platform.#runtime runtime.translate platform.#phase_wrapper ..phase_wrapper - platform.#write (|>> _.code (at utf8.codec encoded))]))) + platform.#write (|>> _.code (of utf8.codec encoded))]))) (def (lux_program context program) (Program _.Expression _.Statement) @@ -983,7 +983,7 @@ (def (declare_success! _) (-> Any (Async Any)) - (async.future (at world/environment.default exit +0))) + (async.future (of world/environment.default exit +0))) (def (lux_compiler it) (-> Any platform.Custom) @@ -1006,7 +1006,7 @@ service [packager.package (format (cli.target service) - (at file.default separator) + (of file.default separator) "program")])] (..declare_success! [])) (io.io [])))) |