alias
alias(s_aliasNames_functionName) =>s_aliasName
Description
Defines a symbol as an alias for a function. This is an nlambda function.
Defines the s_aliasName symbol as an alias for the s_functionName function, which must already have been defined. The alias function does not evaluate its arguments. Use the alias function only to speed up interactive command entry and never in programs.
Arguments
Value Returned
Examples
Aliases path to the getSkillPath function.
alias path getSkillPath
=> path
Aliases e to the edit function.
alias e edit
=> e
Related Topics
Function and Program Structure
Return to top