source files: [cx]lsp.[ch]
SYNTAX
(+ <expression> ... )
DESCRIPTION
This operator adds the given arguments together and returns the result. Results are computed using integer arithmetic until a float operand is encountered, and float arithmetic thereafter. Integer and float overflow are ignored. If you are worried about integer overflow, you may force the computation to float by inserting 0.0 as first argument.