Search code examples
javabeanshell

beanshell equivalent of continue


Is there a beanshell equivalent of java continue ? ex :

if(...cond){
dosomething();
continue;
}

If question is not clear I mean continue keyword from this example :

http://www.java2s.com/Code/Java/Language-Basics/ContinueDemo.htm

Is there something similar in beanshell?


Solution

  • Yes,

    continue;