L
laredotornado
Hi,
I want to pass my function
myFunc('a', 'b', 'c')
as an argument to another function. However, this will not work
doStuff('x', 'y', myFunc('a', 'b', 'c'))
because the expression "myFunc('a', 'b', 'c')" gets evalauted before
it is passed to the function "doStuff". Does this make sense?
Thanks for any help , - Dave
I want to pass my function
myFunc('a', 'b', 'c')
as an argument to another function. However, this will not work
doStuff('x', 'y', myFunc('a', 'b', 'c'))
because the expression "myFunc('a', 'b', 'c')" gets evalauted before
it is passed to the function "doStuff". Does this make sense?
Thanks for any help , - Dave