Jump to content

Flow-control structures: Difference between revisions

(Nimrod -> Nim)
Line 988:
Printf.printf "found %d\n" res</lang>
 
=={{header|Oforth}}==
 
Oforth does not have goto statement.
 
break allows to break the current loop :
<lang Oforth>break</lang>
 
continue allows to immediately start a new iteration :
<lang Oforth>continue</lang>
 
perform is a method that transfer execution to the runnable on top of the stack, then returns :
<lang Oforth>perform</lang>
 
=={{header|Oz}}==
1,015

edits

Cookies help us deliver our services. By using our services, you agree to our use of cookies.