diff options
Diffstat (limited to '')
-rw-r--r-- | lux-jvm/source/program.lux | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux index 8a6729e1d..c07ecd3e3 100644 --- a/lux-jvm/source/program.lux +++ b/lux-jvm/source/program.lux @@ -18,8 +18,9 @@ [collection [array (#+ Array)] ["." dictionary]]] - [world - ["." file]] + ["." world #_ + ["." file] + ["#/." program]] [target [jvm [bytecode (#+ Bytecode)]]] @@ -156,7 +157,7 @@ (def: (declare-success! _) (-> Any (Promise Any)) - (promise.future (io.exit +0))) + (promise.future (\ world/program.default exit +0))) (program: [{service /cli.service}] (exec (do promise.monad |