Difference between revisions of "While/fr"
< While
Jump to navigation
Jump to search
m (Fixing links) |
m (cosmetical) |
||
Line 6: | Line 6: | ||
|statement_end=boucle | |statement_end=boucle | ||
|statement_end_desc=Peut être une instruction simple, un bloc d'instructions, ou un bloc vide. | |statement_end_desc=Peut être une instruction simple, un bloc d'instructions, ou un bloc vide. | ||
|p1_name=condition|p1_desc=Si la condition est évaluée à true, alors '''boucle''' est | |p1_name=condition|p1_desc=Si la condition est évaluée à true, alors '''boucle''' est exécutée | ||
|constants | |constants | ||
|spec | |spec | ||
Line 13: | Line 13: | ||
integer a = 0; | integer a = 0; | ||
integer b = 10; | integer b = 10; | ||
while(a < b) | while (a < b) | ||
llOwnerSay((string) (a++)); | llOwnerSay((string) (a++)); | ||
</pre> | </pre> |
Revision as of 05:28, 5 December 2007
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// instruction simple integer a = 0; integer b = 10; while (a < b) llOwnerSay((string) (a++)); // bloc d'instructions integer a = 0; integer b = 10; while (a < b) { llOwnerSay((string) a); ++a; } // bloc vide integer a = 0; integer b = 10; while (a++ < b) ; | ||||||||||||||||
While