aboutsummaryrefslogtreecommitdiff
path: root/lux-jvm/source/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'lux-jvm/source/program.lux')
-rw-r--r--lux-jvm/source/program.lux6
1 files changed, 3 insertions, 3 deletions
diff --git a/lux-jvm/source/program.lux b/lux-jvm/source/program.lux
index adcbbfb86..46ee6efda 100644
--- a/lux-jvm/source/program.lux
+++ b/lux-jvm/source/program.lux
@@ -108,7 +108,7 @@
(def: (phase_wrapper archive)
(-> Archive (Operation Anchor (Bytecode Any) Definition phase.Wrapper))
- (# phase.monad in (|>>)))
+ (at phase.monad in (|>>)))
(def: .public platform
(IO [java/lang/ClassLoader
@@ -158,7 +158,7 @@
(def: (declare_success! _)
(-> Any (Async Any))
- (async.future (# world/program.default exit +0)))
+ (async.future (at world/program.default exit +0)))
(def: (lux_compiler it)
(-> Any platform.Custom)
@@ -181,6 +181,6 @@
..extender
service
[(packager.package context)
- (format (cli.target service) (# file.default separator) "program.jar")])]
+ (format (cli.target service) (at file.default separator) "program.jar")])]
(..declare_success! []))
(io.io []))))