Recently I've been learning Lua and I love how easy it is to write a function that returns a function. I know it's fairly easy in Perl as well, but I don't think I can do it in C without some heartache. How do you write a function generator in your favorite language?
So that it's easier to compare one language to another, please write a function that generates a quadratic formula:
f(x) = ax^2 + bx + c
Your function should take three values (a, b, and c) and returns f. To test the function, show how to generate the quadratic formula:
f(x) = x^2 - 79x + 1601
Then show how to calculate f(42). I'll post my Lua result as an answer for an example.
Some additional requirements that came up:
All of
a,b,c,x, andf(x)should be floating point numbers.The function generator should be reentrant. That means it should be possible to generate:
g(x) = x^2 + x + 41And then use both
f(x)andg(x)in the same scope.
Most of the answers already meet those requirements. If you see an answer that doesn't, feel free to either fix it or note the problem in a comment.
