]> gitweb.factorcode.org Git - factor.git/blob - core/words/alias/alias-docs.factor
Merge qualified, alias, symbols, constants into core
[factor.git] / core / words / alias / alias-docs.factor
1 USING: help.markup help.syntax words.alias ;
2 IN: words.alias
3
4 ARTICLE: "words.alias" "Word aliasing"
5 "There is a syntax for defining new names for existing words. This useful for C library bindings, for example in the Win32 API, where words need to be renamed for symmetry."
6 $nl
7 "Define a new word that aliases another word:"
8 { $subsection POSTPONE: ALIAS: }
9 "Define an alias at run-time:"
10 { $subsection define-alias } ;
11
12 ABOUT: "words.alias"