From 659537b4ec859f1e705cdd1f82da29ab1a662d94 Mon Sep 17 00:00:00 2001 From: Eduardo Julian Date: Sat, 9 Apr 2022 04:10:28 -0400 Subject: De-sigil-ification: * --- lux-python/source/program.lux | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'lux-python') 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) -- cgit v1.2.3