Finacle Scripting Syntax May 2026
var i = 0; while (i < 5) { print("Hello, world!"); i++; } The syntax for a switch statement is as follows:
var name String; var age Integer; Variables can be assigned values using the assignment operator (=). For example: finacle scripting syntax
if (age > 18) { print("You are an adult"); } else { print("You are a minor"); } Finacle scripting supports two types of loops: For loops and While loops. For Loops The syntax for a for loop is as follows: var i = 0; while (i < 5) { print("Hello, world
for (var i = 0; i < 10; i++) { // code to execute repeatedly } For example: var i = 0