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)
Best regards
Uwe
Code: Select all
Procedure Test(a, b=1, c=1)
;any code here
EndProcedure
Test(2, ,3)