diff options
| author | Eduardo Julian | 2021-08-23 02:30:53 -0400 | 
|---|---|---|
| committer | Eduardo Julian | 2021-08-23 02:30:53 -0400 | 
| commit | ec1f31b5a1492d5e0ab260397291d4449483bbd9 (patch) | |
| tree | c730b4ca89af366779b0ad0f46fae705b5c2bcbc /lux-cl/source | |
| parent | 1ea83ecadccc5adee1bdb35bd11527c3982c015e (diff) | |
The Python compiler can now be compiled by the new JVM compiler.
Diffstat (limited to '')
| -rw-r--r-- | lux-cl/source/program.lux | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/lux-cl/source/program.lux b/lux-cl/source/program.lux index 36ce1f0cd..3122dc31e 100644 --- a/lux-cl/source/program.lux +++ b/lux-cl/source/program.lux @@ -322,7 +322,7 @@                    (wrap [global value definition]))))              (def: (ingest context content) -              (|> content (\ encoding.utf8 decode) try.trusted (:as (_.Expression Any)))) +              (|> content (\ encoding.utf8 decoded) try.trusted (:as (_.Expression Any))))              (def: (re_learn context content)                (run! content)) @@ -341,7 +341,7 @@             #platform.host host             #platform.phase common_lisp.generate             #platform.runtime runtime.generate -           #platform.write (|>> _.code (\ encoding.utf8 encode))}))) +           #platform.write (|>> _.code (\ encoding.utf8 encoded))})))  (def: get_ecl_cli_inputs    (let [@idx (_.var "i")] | 
