| The util.JSONArray class / util.JSONArray methods | |
Creates a new JSON array object.
util.JSONArray.create() RETURNING array util.JSONArray
The util.JSONArray.create() method create a new JSON array object.
The new created object must be assigned to a program variable defined with the util.JSONArray type.
IMPORT util
MAIN
DEFINE arr util.JSONArray
LET arr = util.JSONArray.create()
...
END MAIN