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