continue for core

Continue a loop from the next iteration.

Signature

> continue {flags}

Input/output types:

inputoutput
nothingnothing

Examples

Continue a loop from the next iteration

> for i in 1..10 { if $i == 5 { continue }; print $i }