Like in some other languages, arguments that can be jumped are left empty or may have just an asterisk for more clarity. By jumping these arguments, the called procedure will still use their default value.
Code: Select all
Procedure Ax(a,b,c=1,d=7,e=3,f=9,g=1)
Debug a
Debug b
Debug c
Debug d
Debug e
Debug f
Debug g
EndProcedure
Ax(100,200,*,*,*,*,4)
Do you accept this for a future release?