Scilab Function

break - interruption d'une boucle

Description

A l'intérieur d'une boucle for ou while , la commande break force la boucle ŕ se terminer.

Examples

k=0; while 1==1, k=k+1; if k > 100 then  break,end; end
 

See Also

while ,   if ,   for ,   abort ,   return ,