Short: Better functiona arg definitions
From: Nathan
Date: 2001-12-13
Type: Feature
State: New

In function calls, allow specification of arguments by name:

  foo(1, victim: him, 2);


In varargs function definitions, allow to mark where the optional args
begin, for example with a ';':

  void foo (int i, int j ; mixed k)
