function something(a, b, c){ return function(){/* code that uses a, b, and c */} }
How should I call this type of function?
something(1,2,3)
oh wait one sec