next
Prematurely start the next iteration of the innermost loop.
foreach(Source s) {3c345, 3c273, 0552+398} { if($elevation($s) < 40.0) { next } track $s until $elapsed >= 1m }
next
statement can be used to avoid deep nesting of
if statements. It causes all of
the statements that follow it in the innermost enclosing loop to
be skipped, and then starts the next iteration of the loop.