- :nothing
alias
assign symbol to given function
Parameters
alias symbol :string :symbol :symbolliteral :block function :string :word :literal
Attributes
infix | use infix precedence |
Returns
Examples
copyaddThem: function [x, y][ x + y ] alias --> 'addThem print --> 2 3 ; 5
copymultiplyThem: function [x, y][ x * y ] alias.infix {<=>} 'multiplyThem print 2 <=> 3 ; 6