Menu

Forsta Scripting Support

All the topics, resources needed for Forsta Scripting.

  • About Loop Statements

    Loop statements are used to repeat the execution of a set of statements as long as a particular condition is true. There are three types of loop state...

  • Loop Statements

    while statement while ( condition ) {  statements } The while statement evaluates the condition, and if the condition evaluates to true, executes the sta...