Fix $or
[factor/jcg.git] / core / words / alias / alias-docs.factor
blobd5696479cc82a034152f6765e31c6f32cc96f5a2
1 USING: help.markup help.syntax words.alias ;
2 IN: words.alias
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 } ;
12 ABOUT: "words.alias"