diff options
author | Eduardo Julian | 2023-01-14 02:29:20 -0400 |
---|---|---|
committer | Eduardo Julian | 2023-01-14 02:29:20 -0400 |
commit | 33188f943329296ff4c19ad3fcf717194e3b237e (patch) | |
tree | fb04fe478325ea4884b9b08612b3226d5ebbeb83 /lux-js/source/program.lux | |
parent | 0f9f87286acacb520aa3ab0252131e109184b4cb (diff) |
Added compilation of definitions for C++.
Diffstat (limited to '')
-rw-r--r-- | lux-js/source/program.lux | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lux-js/source/program.lux b/lux-js/source/program.lux index bbd328b6b..f896219f8 100644 --- a/lux-js/source/program.lux +++ b/lux-js/source/program.lux @@ -32,7 +32,7 @@ ["[0]" i64]]] ["[0]" world ["[0]" file] - ["[1]/[0]" environment]] + ["[0]" environment]] [meta ["@" target (.only) ["_" js]] @@ -709,7 +709,7 @@ (def (declare_success! _) (-> Any (Async Any)) - (async.future (of world/environment.default exit +0))) + (async.future (of environment.default exit +0))) (def (scope body) (-> _.Statement _.Statement) |