Halt and catch fire: Difference between revisions

Content added Content deleted
Line 196: Line 196:
Alternatively, the FALSE interpreter expects the stack to be empty at the end of the program's execution, and so leaving a value on the stack is also a valid strategy for crashing the program.
Alternatively, the FALSE interpreter expects the stack to be empty at the end of the program's execution, and so leaving a value on the stack is also a valid strategy for crashing the program.
<lang false> 0</lang>
<lang false> 0</lang>

=={{header|Fortran}}==
{{works with|Fortran|77,90,95,...}}
<lang fortran> PROGRAM A
CALL ABORT
END</lang>


=={{header|Fermat}}==
=={{header|Fermat}}==