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. ................
................