diff options
author | Eduardo Julian | 2021-02-25 01:50:24 -0400 |
---|---|---|
committer | Eduardo Julian | 2021-02-25 01:50:24 -0400 |
commit | 47b320b854a6f28621c5d5d118cac31db27e7c50 (patch) | |
tree | 5cace9a14e0800987c220dff5e03a02913645c05 /lux-python | |
parent | ae7fc0207c8d3281882261642f6a8e0579985aa0 (diff) |
Updates for Ruby compiler.
Diffstat (limited to 'lux-python')
-rw-r--r-- | lux-python/source/program.lux | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux index 166dee982..366395232 100644 --- a/lux-python/source/program.lux +++ b/lux-python/source/program.lux @@ -281,7 +281,10 @@ (wrap [global value definition])))) (def: (ingest context content) - (|> content (\ encoding.utf8 decode) try.assume (:coerce (_.Statement Any)))) + (|> content + (\ encoding.utf8 decode) + try.assume + (:coerce (_.Statement Any)))) (def: (re_learn context content) (execute! content)) |