Program termination: Difference between revisions

Content deleted Content added
added ruby?
added php
Line 217:
# while anything else is an actual problem
}</perl>
 
=={{header|PHP}}==
 
<php>if (problem)
exit(1);</php>
 
=={{header|Pop11}}==
Line 230 ⟶ 235:
 
<python>if problem:
sys.exit(1)</python>
 
=={{header|Ruby}}==
 
<ruby>if problem
exit(1)
end</ruby>