]> gitweb.factorcode.org Git - factor.git/blob - unmaintained/modules/using/using-docs.factor
tools.test: Make the flag public. Finish porting tester changes to fuzzer.
[factor.git] / unmaintained / modules / using / using-docs.factor
1 USING: help.syntax help.markup strings modules.using ;
2 IN: modules.using
3 ARTICLE: { "modules.using" "use" } "Using the modules.using vocab"
4 "This vocabulary defines " { $link POSTPONE: USING*: } " as an alternative to " { $link POSTPONE: USING: } " which makes qualified imports easier. "
5 "Secondly, it allows loading vocabularies from remote servers, as long as the remote vocabulary can be accessed at compile time. "
6 "Finally, the word can treat words in remote vocabularies as remote procedure calls. Any inputs are passed to the imported words as normal, and the result will appear on the stack- the only difference is that the word isn't called locally." ;
7 ABOUT: { "modules.using" "use" }
8
9 HELP: USING*:
10 { $syntax "USING: rpc-server::module fetch-sever:module { module qualified-name } { module => word ... } { qualified-module } { module EXCEPT word ... } { module word => importname } ;" }
11 { $description "Adds vocabularies to the search path. Vocabularies can be loaded off a server or called as an rpc if preceded by a valid hostname. Bracketed pairs facilitate all types of qualified imports on both remote and local modules." } ;