Closed john-science closed 10 years ago
We need the ability to have optional parameters to lambda functions.
For example, I would like range (range 100 0) to have an optional step parameter (range 100 0 10). Right now, I have to have two different functions: range and range-step.
(range 100 0)
(range 100 0 10)
range
range-step
We need the ability to have optional parameters to lambda functions.
For example, I would like range
(range 100 0)
to have an optional step parameter(range 100 0 10)
. Right now, I have to have two different functions:range
andrange-step
.