Skip to content

Latest commit

 

History

History
12 lines (8 loc) · 326 Bytes

File metadata and controls

12 lines (8 loc) · 326 Bytes

LiveCode Builder Language

Variables

  • Out parameters are now initialized by default to a suitable empty value at the start of the handler. For example:

    public handler GetMyValue(out rValue as Integer)
    end handler
    

    will result in rValue being set to 0.

[17809] Initialize out parameters to default.