.. highlightlang:: us .. _obj_create: obj_create ========== .. index:: obj_create .. us.tag obj_create NOTREADYENGLISH New410 obj :ref:`obj_create` creates an UniScript object. .. function:: obj = obj_create() .. us.return **Return Value** *obj* is the new object or 0 if the creation failed. .. us.example **Example** :: obj = obj_create() obj.a = 123 obj.save("c:/test.xml") obj = 0 Instead of using the :ref:`obj_create` function the object constructor syntax can be used (see :ref:`uniscript-objects`): :: o = [. a = 123] .. seealso:: :ref:`overview-uniscript-objects` :sub:`id-1422202`