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-python | |
parent | 56d2835d35093e2d92c5e8a4371aa322b55e037b (diff) |
De-sigil-ification: #
Diffstat (limited to 'lux-python')
-rw-r--r-- | lux-python/source/program.lux | 10 |
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! [])) |