]> gitweb.factorcode.org Git - factor.git/blob - core/load.factor
051d8b7e29f592e8d4d033339c203ac69daa2710
[factor.git] / core / load.factor
1 PROVIDE: core
2 { +files+ {
3     "version.factor"
4
5     "generic/early-generic.factor"
6
7     "kernel.factor"
8
9     "math/math.factor"
10     "math/integer.factor"
11     "math/ratio.factor"
12     "math/libm.factor"
13     "math/float.factor"
14     "math/complex.factor"
15
16     "collections/sequences.factor"
17     "collections/growable.factor"
18     "collections/virtual-sequences.factor"
19     "collections/sequence-combinators.factor"
20     "collections/arrays.factor"
21     "collections/sequences-epilogue.factor"
22     "collections/strings.factor"
23     "collections/sbuf.factor"
24     "collections/vectors.factor"
25     "collections/hashtables.factor"
26     "collections/namespaces.factor"
27     "collections/slicing.factor"
28     "collections/sequence-sort.factor"
29     "collections/flatten.factor"
30     "collections/queues.factor"
31     "collections/graphs.factor"
32
33     "quotations.factor"
34
35     "math/random.factor"
36     "math/constants.factor"
37     "math/pow.factor"
38     "math/trig-hyp.factor"
39     "math/arc-trig-hyp.factor"
40     "math/vectors.factor"
41     "math/parse-numbers.factor"
42
43     "definitions.factor"
44     "words.factor"
45     "effects.factor"
46     "continuations.factor"
47     "errors.factor"
48     
49     "io/styles.factor"
50     "io/stream.factor"
51     "io/duplex-stream.factor"
52     "io/stdio.factor"
53     "io/null-stream.factor"
54     "io/nested-style.factor"
55     "io/lines.factor"
56     "io/plain-stream.factor"
57     "io/string-streams.factor"
58     "io/c-streams.factor"
59     "io/files.factor"
60     "io/binary.factor"
61
62     "syntax/early-parser.factor"
63
64     "generic/classes.factor"
65     "generic/generic.factor"
66     "generic/methods.factor"
67     "generic/standard-combination.factor"
68     "generic/slots.factor"
69     "generic/math-combination.factor"
70     "generic/tuple.factor"
71     
72     "compiler/alien/aliens.factor"
73     
74     "prettyprint/core.factor"
75     "prettyprint/sections.factor"
76     "prettyprint/backend.factor"
77     "prettyprint/frontend.factor"
78     "prettyprint/describe.factor"
79
80     "syntax/parser.factor"
81     "syntax/parse-stream.factor"
82
83     "debugger.factor"
84     "listener.factor"
85     
86     "threads.factor"
87     "io/server.factor"
88
89     "cli.factor"
90     "modules.factor"
91     "syntax/parse-syntax.factor"
92
93     "bootstrap/init.factor"
94
95 } }
96 { +tests+ {
97     "test/binary.factor"
98     "test/collections/hashtables.factor"
99     "test/collections/namespaces.factor"
100     "test/collections/queues.factor"
101     "test/collections/sbuf.factor"
102     "test/collections/sequences.factor"
103     "test/collections/strings.factor"
104     "test/collections/vectors.factor"
105     "test/combinators.factor"
106     "test/continuations.factor"
107     "test/errors.factor"
108     "test/generic.factor"
109     "test/init.factor"
110     "test/io/io.factor"
111     "test/io/nested-style.factor"
112     "test/kernel.factor"
113     "test/math/bitops.factor"
114     "test/math/complex.factor"
115     "test/math/float.factor"
116     "test/math/integer.factor"
117     "test/math/irrational.factor"
118     "test/math/math-combinators.factor"
119     "test/math/random.factor"
120     "test/math/rational.factor"
121     "test/parse-number.factor"
122     "test/parser.factor"
123     "test/parsing-word.factor"
124     "test/prettyprint.factor"
125     "test/random.factor"
126     "test/redefine.factor"
127     "test/threads.factor"
128     "test/tuple.factor"
129     "test/words.factor"
130 } } ;