While/fr
< While
Jump to navigation
Jump to search
Revision as of 07:45, 3 June 2009 by Strife Onizuka (talk | contribs)
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<lsl>// instruction simple integer a = 0; integer b = 10; while (a < b) llOwnerSay((string) (a++)); </lsl> <lsl>// bloc d'instructions integer a = 0; integer b = 10; while (a < b) { llOwnerSay((string) a); ++a; } </lsl> <lsl>// bloc vide integer a = 0; integer b = 10; while (a++ < b) ; </lsl> | ||||||||||||||||
While