blob: 4cb00c4a79cc9ee9d2dd7dfdf9f50c0a2f7294bc (
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
|
(;module:
lux
(lux (control monad)
[io]
(concurrency [promise])
[cli #+ program:]
[test])
(test lux
(lux ["_;" cli]
["_;" host]
["_;" io]
(concurrency ["_;" actor]
["_;" atom]
["_;" frp]
["_;" promise]
["_;" stm])
(control ["_;" effect]
["_;" interval]
["_;" pipe]
["_;" cont]
["_;" reader]
["_;" state]
["_;" thunk])
(data ["_;" bit]
["_;" bool]
["_;" char]
["_;" error]
["_;" ident]
["_;" identity]
["_;" log]
["_;" maybe]
["_;" number]
(number ["_;" ratio]
["_;" complex])
["_;" product]
["_;" sum]
["_;" text]
(error ["_;" exception])
(format ["_;" json]
["_;" xml])
(coll ["_;" array]
["_;" dict]
["_;" list]
["_;" queue]
["_;" set]
["_;" ordered]
["_;" stack]
["_;" vector]
(tree ["_;" rose]
["_;" zipper])
["_;" seq]
["_;" priority-queue]
["_;" stream])
(text ["_;" format]
["_;" lexer]
["_;" regex]))
["_;" math]
(math ["_;" simple]
(logic ["_;" continuous]
["_;" fuzzy]))
(macro ["_;" ast]
["_;" syntax]
(poly ["poly_;" eq]
["poly_;" text-encoder]
["poly_;" functor]))
["_;" type]
(type ["_;" check]
["_;" auto])
))
(lux (control [contract])
(data [env]
[trace]
[store])
[macro]
(math [random]))
)
## [Program]
(program: args
(test;run))
|