-
Notifications
You must be signed in to change notification settings - Fork 172
/
Copy pathgenerate_core_docs.carp
58 lines (54 loc) · 1.07 KB
/
generate_core_docs.carp
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
; runs this from the Carp installation directory, NOT current directory!
(Project.config "title" "core")
(Project.config "docs-directory" "./docs/core/")
(Project.config "docs-logo" "logo.png")
(Project.config "docs-prelude" "Welcome to the documentation for the Carp standard library. Please select a library from the menu on the right to browse its documentation. Carp is available for download [here](https://github.com/carp-lang/carp).")
(Project.config "docs-url" "https://github.com/carp-lang/carp")
(load "SafeInt.carp")
(load "Vector.carp")
(load "Geometry.carp")
(load "Statistics.carp")
(load "Test.carp")
(load "Bench.carp")
(load "Phantom.carp")
(save-docs-ex
['Array
'Bench
'Bool
'Byte
'Char
'Control
'Debug
'Derive
'Double
'Dynamic
'Float
'Function
'Geometry
'Quasiquote
'Int
'Introspect
'Unit
'IO
'Long
'Map
'Maybe
'Opaque
'Pair
'Pattern
'Quadruple
'Phantom
'Pointer
'Result
'StaticArray
'System
'Statistics
'String
'Test
'Triple
'Vector2
'Vector3
'VectorN]
["Macros.carp"
"ControlMacros.carp"])
(quit)