aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2022-06-04 19:34:42 -0400
committerEduardo Julian2022-06-04 19:34:42 -0400
commitf9e33ae96aec4741385a576719786092c9e68043 (patch)
tree140057dfc054346eab721f9905f0f0fff22ad933 /lux-python
parent56d2835d35093e2d92c5e8a4371aa322b55e037b (diff)
De-sigil-ification: #
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 9669f3fc9..b8cd43d0b 100644
--- a/lux-python/source/program.lux
+++ b/lux-python/source/program.lux
@@ -433,7 +433,7 @@
(def: (ingest context content)
(|> content
- (# utf8.codec decoded)
+ (at utf8.codec decoded)
try.trusted
(as (_.Statement Any))))
@@ -476,7 +476,7 @@
(def: define! define!)
(def: (ingest context content)
- (|> content (# utf8.codec decoded) try.trusted (as (_.Statement Any))))
+ (|> content (at utf8.codec decoded) try.trusted (as (_.Statement Any))))
(def: (re_learn context content)
(execute! content))
@@ -533,7 +533,7 @@
platform.#phase python.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 Any) (_.Statement Any))
@@ -550,7 +550,7 @@
(def: (declare_success! _)
(-> Any (Async Any))
- (async.future (# world/program.default exit +0)))
+ (async.future (at world/program.default exit +0)))
(def: (scope body)
(-> (_.Statement Any) (_.Statement Any))
@@ -595,7 +595,7 @@
_.then
..scope)
(format (cli.target service)
- (# file.default separator)
+ (at file.default separator)
"program"
extension)])]
(..declare_success! []))