Language catalogKeywordscontinueOn this pagecontinueMakes a given loop (that the 'continue' keyword is inside) act as it has reached the end of its body. Syntax continue Example repeat 5 with $iteration if {$iteration is 3} continue end Print "iteration {$iteration}"end