6
votes
How do you create a function that returns a function in your language of choice?
Smalltalk
A simple solution using a code block:
| quadratic f |
quadratic := [:a :b :c | [:x | (a * x squared) + (b * x) + c]].
And to generate the fu …
