Halt and catch fire: Difference between revisions

no edit summary
(GDScript)
No edit summary
Line 138:
=={{header|Crystal}}==
<syntaxhighlight lang="crystal">raise "fire"</syntaxhighlight>
 
=={{header|Delphi}}==
{{works with|Delphi|6.0}}
{{libheader|SysUtils,SysUtils,StdCtrls}}
The program uses Delphi's builtin exception processing to throw an exception. Uncaught except about a program
 
<syntaxhighlight lang="Delphi">
procedure HaltAndCatchFire;
begin
raise Exception.Create('Burning to the ground');
end;
 
</syntaxhighlight>
{{out}}
<pre>
 
</pre>
 
 
=={{header|F_Sharp|F#}}==
465

edits