aboutsummaryrefslogtreecommitdiff
path: root/lux-scheme
diff options
context:
space:
mode:
authorEduardo Julian2022-12-02 19:33:00 -0400
committerEduardo Julian2022-12-02 19:33:00 -0400
commit94e5802f594a73245fce0fbd885103b8bf210d57 (patch)
tree65e5799c0be40f5f015b39bfa6c87c9c27fd9424 /lux-scheme
parentb491dfff00219d5206075ea65468e00ab657075d (diff)
Added some simple time-series handling machinery.
Diffstat (limited to 'lux-scheme')
-rw-r--r--lux-scheme/source/program.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-scheme/source/program.lux b/lux-scheme/source/program.lux
index ebc1fcd69..71cc75ff5 100644
--- a/lux-scheme/source/program.lux
+++ b/lux-scheme/source/program.lux
@@ -392,7 +392,7 @@
(wrap [global value definition]))))
(def (ingest context content)
- (|> content (at encoding.utf8 decoded) try.trusted (as _.Expression)))
+ (|> content (of encoding.utf8 decoded) try.trusted (as _.Expression)))
(def (re_learn context content)
(run! content))
@@ -411,7 +411,7 @@
platform.#host host
platform.#phase scheme.translate
platform.#runtime runtime.translate
- platform.#write (|>> _.code (at encoding.utf8 encoded))])))
+ platform.#write (|>> _.code (of encoding.utf8 encoded))])))
(def (program context program)
(Program _.Expression _.Expression)
@@ -454,7 +454,7 @@
(def (declare_success! _)
(-> Any (Promise Any))
- (promise.future (at world/program.default exit +0)))
+ (promise.future (of world/program.default exit +0)))
(`` (def _
(program [service /cli.service]
@@ -478,7 +478,7 @@
service
[(packager.package now)
(format (/cli.target service)
- (at file.default separator)
+ (of file.default separator)
"program.tar")])]
(..declare_success! []))
(io.io [])))))))