than useful to also be able to use this feature for structures IMHO:
Code: Select all
Procedure MyProcedureWithOptionalParams(a.l = 42, *b.POINT = {8,15})
; *b\x = 8, *b\y = 15
EndProcedure
Code: Select all
Procedure MyProcedureWithOptionalParams(a.l = 42, *b.POINT = {8,15})
; *b\x = 8, *b\y = 15
EndProcedure
Code: Select all
Structure MyPoint
x.l=1
y.l=2
EndStructure
No, I think you misunderstood what I meant.Rescator wrote:Your idea would mean dynamic structures.