On 12/3/05, Paul Elschot <[EMAIL PROTECTED]> wrote: > Indeed, this is a disadvantage of the "function call" syntax.
It depends on the langage. Take Python for example: >>> def foo(a,b): print a,b >>> foo(1,2) 1 2 >>> foo(a=1,b=2) 1 2 >>> foo(b=2,a=1) 1 2 >>> -Yonik Now hiring -- http://forms.cnet.com/slink?231706 --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
