David Klein
Programmer
I want to stop processing the action of the current pattern and continue with the next pattern.
I am familiar with "continue", "break" and "next" but none seem to do what I want.
For example:
pattern1 {
pattern2 {
I am familiar with "continue", "break" and "next" but none seem to do what I want.
For example:
pattern1 {
many lines, nested loops etc.
if (condition) Skip_rest_of_pattern1_and_continue_with_pattern2
many lines, nested loops etc.
}pattern2 {
more code
}