Scilab Home page | Wiki | Bug tracker | Forge | Mailing list archives | ATOMS | File exchange
Please login or create an account
Change language to: Français - Português - Русский - 日本語
Scilab Help >> Scilab > Control flow > break

break

keyword to interrupt loops

Description

Inside a for or while loop, the command break forces the end of the loop.

Examples

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

See Also

  • while — while keyword
  • if — keyword for conditional execution
  • for — language keyword for loops
  • abort — interrupt evaluation.
  • return — return or resume execution and copy some local variables
Scilab Enterprises
Copyright (c) 2011-2015 (Scilab Enterprises)
Copyright (c) 1989-2012 (INRIA)
Copyright (c) 1989-2007 (ENPC)
with contributors
Last updated:
Wed Jun 15 08:27:30 CEST 2016