Estructuras de Control

ESTRUCTURAS DE CONTROL

//1) ESTRUCTURAS DE SELECCION

RuleContext seleccion {
Rule rule {
// SENTENCIA IF
String a = “hola”
String b = “chau”

If (a == b) { // false
// bloque a ejecutar
}

If (a == b) { // true
// bloque a ejecutar
}
}
}

//2) ESTRUCTURAS DE ITERACION

RuleContext iteracion {
Rule rule {
// SENTENCIA WHILE
Integer a = 38
Integer b = 0

while (a > b) {
// bloque a ejecutar
b = b + 1
}

// SENTENCIA FOR
Array arInt = [1, 2, 3, 4, 5]

for x in arInt {
broker.ui.showAlert(x.toString(), x.toString())
}
}
}

>Siguiente