aboutsummaryrefslogtreecommitdiff
path: root/lux-cl/source/program.lux
diff options
context:
space:
mode:
authorEduardo Julian2022-04-08 05:42:36 -0400
committerEduardo Julian2022-04-08 05:42:36 -0400
commit0d909187d5b9effcd08f533d50af7d29c0d6bfd8 (patch)
treec50f12c5e47e3db90c3a701b54ee9953da942210 /lux-cl/source/program.lux
parente5e4c2aff562e5c01fefb808d1d68a40f29c9cc5 (diff)
De-sigil-ification: $
Diffstat (limited to 'lux-cl/source/program.lux')
-rw-r--r--lux-cl/source/program.lux8
1 files changed, 4 insertions, 4 deletions
diff --git a/lux-cl/source/program.lux b/lux-cl/source/program.lux
index e75ed2c19..6f6c4b1fc 100644
--- a/lux-cl/source/program.lux
+++ b/lux-cl/source/program.lux
@@ -407,10 +407,10 @@
(def: (scope body)
(-> (_.Expression Any) (_.Expression Any))
(let [@program (_.var "lux_program")]
- ($_ ..then
- (_.defun @program (_.args (list)) body)
- (_.call/* @program (list))
- )))
+ (all ..then
+ (_.defun @program (_.args (list)) body)
+ (_.call/* @program (list))
+ )))
(`` (program: [service /cli.service]
(let [extension ".cl"]