aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2022-04-09 04:10:28 -0400
committerEduardo Julian2022-04-09 04:10:28 -0400
commit659537b4ec859f1e705cdd1f82da29ab1a662d94 (patch)
treefcbfce7370b757009d0425eba1c56646fbc21dd4 /lux-python
parent04c7f49a732380a2b9f72b1b937171b341c24323 (diff)
De-sigil-ification: *
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/source/program.lux16
1 files changed, 8 insertions, 8 deletions
diff --git a/lux-python/source/program.lux b/lux-python/source/program.lux
index cc7ef2162..feddcf1dd 100644
--- a/lux-python/source/program.lux
+++ b/lux-python/source/program.lux
@@ -540,13 +540,13 @@
(all _.then
(_.import "sys")
(_.when (_.= (_.string "__main__") (_.var "__name__"))
- (_.statement (_.apply/* (list (|> (_.var "sys") (_.the "argv")
- ... The first entry in the list will be the program.py file itself
- ... so, it must be removed so only the program's arguments are left.
- (_.slice_from (_.int +1))
- runtime.lux::program_args)
- _.none)
- program)))))
+ (_.statement (_.apply (list (|> (_.var "sys") (_.the "argv")
+ ... The first entry in the list will be the program.py file itself
+ ... so, it must be removed so only the program's arguments are left.
+ (_.slice_from (_.int +1))
+ runtime.lux::program_args)
+ _.none)
+ program)))))
(def: (declare_success! _)
(-> Any (Async Any))
@@ -566,7 +566,7 @@
(; (_.do "setrecursionlimit" (list new_limit) $sys))
... (; (_.do "stack_size" (list current_limit) $threading))
(_.def @program (list) body)
- (; (_.apply/* (list) @program))
+ (; (_.apply (list) @program))
))))
(def: (lux_compiler it)