for exemple:
Code:
function f(fref g(value), x)
return g(x);
endfunction
I use 'fref' in the exemple to show that 'g' is the function reference passed to the function 'f'.
I think using this syntax:
Code:
function f(fref g, x)
return g(x);
endfunction
It would be better (IMO).