Easypt

Int

..Root.Int

Constructs new Int.

Int type signatures:

Object, Basic, Int

Child of:

Root

Signatures:

NativeCallable, Callable, Class

Members:

Example:

auto n.=(10);
auto str.=(String());
auto conditon.=(n.toBoolean());
while(conditon, {
    str.pushBack("a");
    conditon.=(n.--().toBoolean());
});
log(str);