Say I have a simple function: f: {[x] 10?x};Is there a way to compose
this function, and get a new function that takes no arguments? I can't
see a way to do this without either1) calling the function g: f[10];
/Not what we want2) using globalsglobal:...