diff options
author | Eduardo Julian | 2022-06-04 19:34:42 -0400 |
---|---|---|
committer | Eduardo Julian | 2022-06-04 19:34:42 -0400 |
commit | f9e33ae96aec4741385a576719786092c9e68043 (patch) | |
tree | 140057dfc054346eab721f9905f0f0fff22ad933 /lux-jvm/source | |
parent | 56d2835d35093e2d92c5e8a4371aa322b55e037b (diff) |
De-sigil-ification: #
Diffstat (limited to 'lux-jvm/source')
-rw-r--r-- | lux-jvm/source/program.lux | 6 |
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 [])))) |