const test = (arg) => { return arg }; const final = (arg) => test => { test(arg) } final("test");
Code
As I understand it, the f-th
final we pass the argument
arg and pre-generated f-th
test, and in the body of f-and
final we call f-u test(). It?
For some reason, I do not receive values from the call to
final("test");