factor/library/load.factor

238 lines
5.9 KiB
Factor

PROVIDE: library
{ +files+ {
"version.factor"
"generic/early-generic.factor"
"kernel.factor"
"math/math.factor"
"math/integer.factor"
"math/ratio.factor"
"math/libm.factor"
"math/float.factor"
"math/complex.factor"
"collections/sequences.factor"
"collections/growable.factor"
"collections/virtual-sequences.factor"
"collections/sequence-combinators.factor"
"collections/arrays.factor"
"collections/sequences-epilogue.factor"
"collections/strings.factor"
"collections/sbuf.factor"
"collections/vectors.factor"
"collections/hashtables.factor"
"collections/namespaces.factor"
"collections/slicing.factor"
"collections/sequence-sort.factor"
"collections/flatten.factor"
"collections/queues.factor"
"collections/graphs.factor"
"quotations.factor"
"math/random.factor"
"math/constants.factor"
"math/pow.factor"
"math/trig-hyp.factor"
"math/arc-trig-hyp.factor"
"math/vectors.factor"
"math/parse-numbers.factor"
"definitions.factor"
"words.factor"
"effects.factor"
"continuations.factor"
"errors.factor"
"io/styles.factor"
"io/stream.factor"
"io/duplex-stream.factor"
"io/stdio.factor"
"io/null-stream.factor"
"io/nested-style.factor"
"io/lines.factor"
"io/plain-stream.factor"
"io/string-streams.factor"
"io/c-streams.factor"
"io/files.factor"
"io/binary.factor"
"syntax/early-parser.factor"
"generic/classes.factor"
"generic/generic.factor"
"generic/methods.factor"
"generic/standard-combination.factor"
"generic/slots.factor"
"generic/math-combination.factor"
"generic/tuple.factor"
"compiler/alien/aliens.factor"
"syntax/prettyprint.factor"
"tools/summary.factor"
"syntax/parser.factor"
"syntax/parse-stream.factor"
"tools/definitions.factor"
"tools/describe.factor"
"tools/completion.factor"
"help/stylesheet.factor"
"help/topics.factor"
"help/markup.factor"
"help/help.factor"
"help/porter-stemmer.factor"
"help/search.factor"
"help/syntax.factor"
"tools/debugger.factor"
"threads.factor"
"io/server.factor"
"tools/memory.factor"
"tools/listener.factor"
"tools/inspector.factor"
"tools/word-tools.factor"
"tools/test.factor"
"tools/interpreter.factor"
"cli.factor"
"modules.factor"
"syntax/parse-syntax.factor"
"tools/errors.factor"
"bootstrap/init.factor"
"bootstrap/image.factor"
"continuations.facts"
"definitions.facts"
"effects.facts"
"errors.facts"
"kernel.facts"
"modules.facts"
"quotations.facts"
"threads.facts"
"words.facts"
"bootstrap/image.facts"
"bootstrap/init.facts"
"collections/growable.facts"
"collections/arrays.facts"
"collections/graphs.facts"
"collections/hashtables.facts"
"collections/namespaces.facts"
"collections/queues.facts"
"collections/sbuf.facts"
"collections/sequence-combinators.facts"
"collections/sequence-sort.facts"
"collections/sequences-epilogue.facts"
"collections/sequences.facts"
"collections/slicing.facts"
"collections/strings.facts"
"collections/flatten.facts"
"collections/vectors.facts"
"collections/virtual-sequences.facts"
"generic/early-generic.facts"
"generic/classes.facts"
"generic/generic.facts"
"generic/methods.facts"
"generic/math-combination.facts"
"generic/slots.facts"
"generic/standard-combination.facts"
"generic/tuple.facts"
"help/help.facts"
"help/markup.facts"
"help/porter-stemmer.facts"
"help/search.facts"
"help/syntax.facts"
"help/topics.facts"
"io/binary.facts"
"io/c-streams.facts"
"io/duplex-stream.facts"
"io/files.facts"
"io/lines.facts"
"io/nested-style.facts"
"io/plain-stream.facts"
"io/server.facts"
"io/stdio.facts"
"io/stream.facts"
"io/string-streams.facts"
"io/styles.facts"
"math/arc-trig-hyp.facts"
"math/complex.facts"
"math/constants.facts"
"math/float.facts"
"math/integer.facts"
"math/math.facts"
"math/parse-numbers.facts"
"math/pow.facts"
"math/random.facts"
"math/ratio.facts"
"math/trig-hyp.facts"
"math/vectors.facts"
"syntax/early-parser.facts"
"syntax/parse-stream.facts"
"syntax/parser.facts"
"syntax/parse-syntax.facts"
"syntax/prettyprint.facts"
"tools/definitions.facts"
"tools/word-tools.facts"
"tools/debugger.facts"
"tools/summary.facts"
"tools/describe.facts"
"tools/inspector.facts"
"tools/listener.facts"
"tools/memory.facts"
"tools/test.facts"
} }
{ +tests+ {
"test/annotate.factor"
"test/binary.factor"
"test/collections/hashtables.factor"
"test/collections/namespaces.factor"
"test/collections/queues.factor"
"test/collections/sbuf.factor"
"test/collections/sequences.factor"
"test/collections/strings.factor"
"test/collections/vectors.factor"
"test/combinators.factor"
"test/continuations.factor"
"test/errors.factor"
"test/generic.factor"
"test/help/porter-stemmer.factor"
"test/help/topics.factor"
"test/help/search.factor"
"test/inference.factor"
"test/init.factor"
"test/inspector.factor"
"test/interpreter.factor"
"test/io/io.factor"
"test/io/nested-style.factor"
"test/kernel.factor"
"test/math/bitops.factor"
"test/math/complex.factor"
"test/math/float.factor"
"test/math/integer.factor"
"test/math/irrational.factor"
"test/math/math-combinators.factor"
"test/math/random.factor"
"test/math/rational.factor"
"test/memory.factor"
"test/parse-number.factor"
"test/parser.factor"
"test/parsing-word.factor"
"test/prettyprint.factor"
"test/random.factor"
"test/redefine.factor"
"test/stream.factor"
"test/threads.factor"
"test/tuple.factor"
"test/words.factor"
"test/tools.factor"
} } ;