14 दिसंबर 2025,

रविवार

Patrika LogoSwitch to English
home_icon

मेरी खबर

icon

प्लस

video_icon

शॉर्ट्स

epaper_icon

ई-पेपर

Finacle Scripting Syntax 90%

for (var i = 0; i < 5; i++) { print("Hello, world!"); } The syntax for a while loop is as follows:

var name String; var age Integer; Variables can be assigned values using the assignment operator (=). For example: finacle scripting syntax

for (var i = 0; i < 10; i++) { // code to execute repeatedly } For example: for (var i = 0; i &lt; 5; i++) { print(&quot;Hello, world

var i = 0; while (i < 5) { print("Hello, world!"); i++; } The syntax for a switch statement is as follows: for (var i = 0

if (condition) { // code to execute if condition is true } else { // code to execute if condition is false } For example:

switch (value) { case value1: // code to execute if value matches value1 break; case value2: // code to execute if value matches value2 break; default: // code to execute if value does not match any case } For example: