base module
Core framework Console Desktop
The base module contains global functions specific to Luart
| Functions | Description | Return value |
|---|---|---|
| async() | Run a Task asynchronously | |
| await() | Run a Task and wait until it terminates | ... |
| each() | Provide a value iterator for tables/objects | function |
| is() | Check for inheritance | boolean |
| Object() | Define a new Object | Object |
| sleep() | Suspend the current execution flow | - |
| super() | Get the ancestor of an object/instance. | Object nil |
| type() | Get the type of a value | string |
| waitall() | Wait for Tasks to terminate | - |