Local Functions
Function

Creates a local function without a return value.
You can click the ⚙️ button to add input parameters.
The created function can be called and executed from other blocks within the current block editor.
- Input [Type]: None
- Output [Type]: None
Function

Creates a local function with a return value.
You can click the ⚙️ button to add input parameters.
The created function can be called and executed from other blocks within the current block editor.
- Input [Type]: Return value [All Types]
- Output [Type]: None
Return

Returns a value when the condition is satisfied. This block can only be used within local function blocks.
- Input [Type]: Condition [Digital], Return value [All Types]
- Output [Type]: None
Function Call (No Return Value)

Executes a predefined local function without a return value.
- Input [Type]: Parameters defined in the function (if any)
- Output [Type]: None
Function Call (With Return Value)

Executes a predefined local function with a return value and returns the result of the function execution.
- Input [Type]: Parameters defined in the function (if any)
- Output [Type]: Function return value [All Types]