On 12/1/08, Adam Majewski <adammaj1 at o2.pl> wrote:
> How to pass external function thru parameters ?
> ( here f is global function )
I guess what you have observed is that with the function
definition foo(f) := f(whatever), the function call foo(g) calls f
when there exists a function named f, but calls g otherwise.
This is a bug IMNSHO.
The standard workaround is to choose an unusual name for
the argument, maybe f% or whatever you want.
If that's not the problem, you'll have to explain.
HTH
Robert Dodier