Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 544 Bytes

File metadata and controls

18 lines (13 loc) · 544 Bytes

LiveCode Builder Language

Expressions

  • It is now possible to use array constants and array expressions in LiveCode Builder programs. For example:

    variable tArray as Array
    put {"key": true} into tArray
    

    Keys in array literals must be strings.

LiveCode Builder Tools

lc-compile

Errors

  • List expressions with more than 254 elements will now generate an error.
  • Array expressions with more than 127 key-value pairs will now generate an error.
  • Array constants with non-string keys will now generate an error.