erlang:apply(M, F, Args).<br><br>Robert<br><br><div class="gmail_quote">2009/5/1 Kevin <span dir="ltr"><<a href="mailto:q2h46uw02@sneakemail.com">q2h46uw02@sneakemail.com</a>></span><br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">

<br>
I've figured out how to do this simple "meta-programming",<br>
<br>
start() -><br>
    run(io, format, ["hello", "there"]).<br>
<br>
<br>
run(M, F, Args) -><br>
    M:F("~s ~s~n", Args).<br>
<br>
<br>
But do we have the same power as something like spawn(Module, Function,<br>
Args), where Args is<br>
passed in as a list, but its "exploded" into parameters when the<br>
function is called?<br>
<br>
Can something like this work?<br>
<br>
<br>
start() -><br>
    run(string, equal, ["hello", "hello"]).<br>
<br>
<br>
run(M, F, Args) -><br>
    M:F(Args).  %% called as string:equal("hello", "hello")<br>
_______________________________________________<br>
erlang-questions mailing list<br>
<a href="mailto:erlang-questions@erlang.org">erlang-questions@erlang.org</a><br>
<a href="http://www.erlang.org/mailman/listinfo/erlang-questions" target="_blank">http://www.erlang.org/mailman/listinfo/erlang-questions</a><br>
</blockquote></div><br>