Page 1 of 1

Omit default values in function calls

Posted: Fri Mar 22, 2013 7:41 pm
by uwekel
Hi,

i would appreciate the possibility to omit or skip default values on function calls.

Example:

Code: Select all

Procedure Test(a, b=1, c=1)
  ;any code here
EndProcedure

Test(2, ,3)
The second argument b has been omited and the default value 1 will be used.

Best regards
Uwe

Re: Omit default values in function calls

Posted: Fri Mar 22, 2013 7:46 pm
by STARGÅTE

Re: Omit default values in function calls

Posted: Fri Mar 22, 2013 8:04 pm
by uwekel
Thx STARGÅTE, i searched before posting this, but haven't found anything.