
EN: rebol.com -
rebol.org -
rebol.net -
FR: Rebol Documentation Project -
forum RebelBB -
rebol-france.org -
forum codeur -
Evalue un bloc jusqu’à ce qu’il retourne TRUE.
until block
block - Le bloc à évaluer. (type: block!)
Evalue un bloc jusqu’à ce qu’il retourne la valeur TRUE (c’est-à-dire que la dernière expression du bloc est TRUE.)
str: "string" until [ print str tail? str: next str ] string tring ring ing ng g
for - Répète un bloc sur un intervalle de valeurs.
repeat - Evalue un bloc sur une série ou un certain nombre de fois.
while - Tant que le bloc de condition est TRUE, évalue l’autre bloc.