Main Page - Gambit wiki

(lambda (a b c) code) takes three parameters. function(a,b,c) { code }; Also, a function can take be defined to take at least a specified number of parameters. This is defined through first defining the parameters that must be passed, then a separate dot, and then a variable that will get the rest of parameters passed, if any. If no parameters must be passed, then omit the dot, as well as the starting and ending parentheses of the parameters … ................
................