Question
How can i display a statement only once in a loop which is running 4 times?
Hi,
I have the following code where i want to display the message "Hello World" only once in a loop . what condition i should write?
a!localVariables(
a!forEach(
items: {1,2,3,4},
expression:
{
concat("Hello "," World")
}
)
)
