Given functions:
f:{[par1; par2]
:123;};
f_wrapper:{[par1; par2]
:.[{f[x, y]};(par1;par2);456];};
I am running:
f[1;2]
f_wrapper[1;2]
The first call returns 123 as expected. From the second call I am only getting a projection without f function being executed. I am expecting to receive 123 from the