aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/world/program.lux
blob: 0d7ab4d1a4d2e4aee0edf8e2bd3de0d0a394312f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
(.using
 [library
  [lux (.except)
   ["$" documentation (.only documentation:)]
   [control
    ["<>" parser
     ["<[0]>" code]]]
   [data
    ["[0]" text (.only \n)
     ["%" \\format (.only format)]]]
   [macro
    ["[0]" template]]]]
 [\\library
  ["[0]" /]])

(documentation: (/.Program !)
  "Access to ambient program data and the capacity to exit the program.")

(documentation: /.environment
  "Assembles the environment variables available to the program."
  [(environment monad program)])

(documentation: /.mock
  ""
  [(mock environment home directory)])

(.def: .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [..Program
             ..environment
             ..mock
             ($.default /.unknown_environment_variable)
             ($.default /.async)
             ($.default /.default)]
            []))