Difference between revisions of "Do while/fr"
< Do while
Jump to navigation
Jump to search
m (Translation mistake) |
m (Cosmetical) |
||
Line 12: | Line 12: | ||
|spec | |spec | ||
|caveats | |caveats | ||
|examples=<pre>//Compte de 1 à 5 | |examples=<pre>// Compte de 1 à 5 | ||
default | default | ||
{ | { | ||
Line 23: | Line 23: | ||
} | } | ||
}</pre> | }</pre> | ||
<pre>//Compte de 0 à 4 | <pre>// Compte de 0 à 4 | ||
default | default | ||
{ | { |
Latest revision as of 02:40, 24 December 2007
LSL Portail Francophone | LSL Portail Anglophone | Fonctions | Évènements | Types | Operateurs | Constantes | Contrôle d'exécution | Bibliothèque | Tutoriels |
do boucle while (condition);
| ||||||||||||||||
Spécification
| ||||||||||||||||
Exemples// Compte de 1 à 5 default { state_entry() { integer olf; do llSay(0, (string) (++olf)); while (olf < 5); } } // Compte de 0 à 4 default { state_entry() { integer olf; do llSay(0, (string) olf); while ((++olf) < 5); } } |
Do while