aboutsummaryrefslogtreecommitdiff
path: root/lux-python
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-python
parentb491dfff00219d5206075ea65468e00ab657075d (diff)
Added some simple time-series handling machinery.
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/source/program.lux10
1 files changed, 5 insertions, 5 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux
index 0d6d82c63..c8b60c5a2 100644
--- a/lux-python/source/program.lux
+++ b/lux-python/source/program.lux
@@ -438,7 +438,7 @@
(def (ingest context content)
(|> content
- (at utf8.codec decoded)
+ (of utf8.codec decoded)
try.trusted
(as (_.Statement Any))))
@@ -481,7 +481,7 @@
(def define! define!)
(def (ingest context content)
- (|> content (at utf8.codec decoded) try.trusted (as (_.Statement Any))))
+ (|> content (of utf8.codec decoded) try.trusted (as (_.Statement Any))))
(def (re_learn context content)
(execute! content))
@@ -535,7 +535,7 @@
platform.#phase python.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 Any) (_.Statement Any))
@@ -552,7 +552,7 @@
(def (declare_success! _)
(-> Any (Async Any))
- (async.future (at world/environment.default exit +0)))
+ (async.future (of world/environment.default exit +0)))
(def (scope body)
(-> (_.Statement Any) (_.Statement Any))
@@ -596,7 +596,7 @@
_.then
..scope)
(format (cli.target service)
- (at file.default separator)
+ (of file.default separator)
"program"
extension)])]
(..declare_success! []))