While/fr
< While
Jump to navigation
Jump to search
Revision as of 22:56, 25 July 2015 by Jerome Manatiso (talk | contribs) (remise en forme de la parti code)
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
while( condition ) boucle
| ||||||||||||||||
Spécification
| ||||||||||||||||
Exemples//single statement
integer a = 0;
integer b = 10;
while(a < b)
llOwnerSay((string)(a++));
//block statement
integer a = 0;
integer b = 10;
while(a < b)
{
llOwnerSay((string)a);
++a;
}
//null statement
integer a = 0;
integer b = 10;
while(a++ < b);
| ||||||||||||||||
While