London
London

Reputation: 15284

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?

Upvotes: 0

Views: 396

Answers (1)

Nix
Nix

Reputation: 58602

Yes,

continue;

Upvotes: 1

Related Questions