BREAK
Sortie d'un bloc d'instructions.
Support WebVue - Oui.
Syntaxe
BREAK;
Pas de retour
Exécution
Sortie d'un bloc d'instructions.
Exemple
SUB main()
DIM i As Integer;
For (i=1;i<1000;i++)
If (i>500) Then
BREAK;
End If
Next
PRINT("value = ",i);
'value = 501
END SUB