Easypt

Object

..Root.Object

Constructs new Object. Any variable created with keyword auto or auto is initialized with Object type.

Object type signatures:

Object

Child of:

Root

Signatures:

NativeCallable, Callable, Class

Members:

Example:

auto mother;
auto father;

mother.var son;
father.var daughter;

mother.addChild("step-daughter", father.getChild("daughter"));

mother.addChild(Object());
auto childrenArray.=(mother.getChildrenArray());
for (auto it.=(childrenArray.begin()).!=, childrenArray.end(), it.++, {
    if (instanceOf(it.get(), Object), {
        log(it.get().getName());
    });
});

Possible output:

son
daughter
Anonymous3384