Function COMPOSE Returns a function which applies the arguments in order.
Function CURRY Returns a function which will call FUNCTION passing it INITIAL-ARGS and then any other args.
Function RCURRY Returns a function which will call FUNCTION passing it the passed args and then INITIAL-ARGS.
Function NOOP Do nothing.
Macro LAMBDA-REC Just like lambda except BODY can make recursive calls to the lambda by calling the function NAME.