Scilab 5.4.0
Please note that the recommended version of Scilab is 6.1.0. This page might be outdated.
See the recommended documentation of this 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.
Exemples
k=0; while 1==1, k=k+1; if k > 100 then break end; end
Comments
Add a comment:
Please login to comment this page.