info($message)
info($message, $detail)
Creates a message on the user interface without interrupting the script.
| Name | Type | Description | Mandatory | Default |
|---|---|---|---|---|
| message | String/Internationalized text | The main message of the message. | yes | |
| detail | String/Internationalized text | Details about message. |
no | No details. |
info('Hello');
Output:

info('Hello', 'How are you?')
Output:

{
message = #("Hallo"@de, "Hello"@en);
details = #("Wie geht es dir?"@de, "How are you?"@en);
info($message, $details);
}
Output:
German:

English:
