aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/library/lux/program.lux
diff options
context:
space:
mode:
Diffstat (limited to 'stdlib/source/library/lux/program.lux')
-rw-r--r--stdlib/source/library/lux/program.lux12
1 files changed, 0 insertions, 12 deletions
diff --git a/stdlib/source/library/lux/program.lux b/stdlib/source/library/lux/program.lux
index 3bb42e75f..87e80b27b 100644
--- a/stdlib/source/library/lux/program.lux
+++ b/stdlib/source/library/lux/program.lux
@@ -30,18 +30,6 @@
(syntax: .public (program: [args ..arguments^
body <code>.any])
- {#.doc (example "Defines the entry-point to a program (similar to the 'main' function/method in other programming languages)."
- "Can take a list of all the input parameters to the program."
- "Or, can destructure them using CLI-option combinators from the library/lux/control/parser/cli module."
- (program: all_arguments
- (do io.monad
- [foo (initialize program)]
- (do_something_with all_arguments)))
-
- (program: [config configuration_parser]
- (do io.monad
- [data (initialize program with config)]
- (do_something_with data))))}
(with_identifiers [g!program g!args g!_ g!output g!message]
(let [initialization+event_loop
(` ((~! do) (~! io.monad)