Tests a given condition. If the condition is true, performs the actions in a given sequence of blocks; otherwise, the blocks are ignored.
Tests a given condition. If the result is true, performs the actions in the then-do
sequence of blocks; otherwise, performs the actions in the else-do
sequence of blocks.
Tests a given condition. If the condition is true, performs the actions in the then-do
sequence of blocks and returns the then-return
value; otherwise, performs the actions in the else-do
sequence of blocks and returns the else-return
value.
Runs the blocks in the do
section for each item in the list in list
. Use the given variable name to refer to the current list item.
Runs the block in the do
section for each numeric value in the range from start to end, stepping the value each time. Use the given variable name to refer to the current value.
Tests the test
condition. If true, performs the action given in do
, then tests again. When test
is false, the block ends.
Opens a new screen.
Opens a new screen and passes a value to it.
Returns the start value passed from the previous screen.
Closes the current screen.
Closes the current screen and returns a value to the screen that opened it.
Closes the application.
Returns the text passed to this app when the app was started, if any.
Closes the current screen and passes text to the app that opened this one. For multiple screen apps, use close screen with value rather than this one.